Fix comparison for the Entry class
This commit is contained in:
parent
44d1823c65
commit
fca15fe068
1 changed files with 1 additions and 0 deletions
|
@ -146,6 +146,7 @@ public class Entry {
|
||||||
Entry entry = (Entry) o;
|
Entry entry = (Entry) o;
|
||||||
|
|
||||||
if (!Arrays.equals(secret, entry.secret)) return false;
|
if (!Arrays.equals(secret, entry.secret)) return false;
|
||||||
|
if (period != entry.period) return false;
|
||||||
return !(label != null ? !label.equals(entry.label) : entry.label != null);
|
return !(label != null ? !label.equals(entry.label) : entry.label != null);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue