string comparison

This commit is contained in:
AdrianLxM 2017-07-20 00:53:05 +02:00
parent 123b171f58
commit c35b7bb9d6

View file

@ -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;