string comparison
This commit is contained in:
parent
123b171f58
commit
c35b7bb9d6
|
@ -51,7 +51,7 @@ public class TempTarget implements Interval {
|
||||||
return false;
|
return false;
|
||||||
if (high != other.high)
|
if (high != other.high)
|
||||||
return false;
|
return false;
|
||||||
if (reason != other.reason)
|
if (!Objects.equals(reason, other.reason))
|
||||||
return false;
|
return false;
|
||||||
if (!Objects.equals(_id, other._id))
|
if (!Objects.equals(_id, other._id))
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue