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