mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 22:56:45 +01:00
Replace Guava methods with stdlib equivalents
This commit is contained in:
parent
7a6909dab1
commit
282773a43f
@ -118,13 +118,13 @@ import java.util.concurrent.TimeUnit;
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
final PlotCacheKey that = (PlotCacheKey) o;
|
final PlotCacheKey that = (PlotCacheKey) o;
|
||||||
return com.google.common.base.Objects.equal(plot.getArea(), that.plot.getArea())
|
return Objects.equals(plot.getArea(), that.plot.getArea())
|
||||||
&& com.google.common.base.Objects.equal(plot.getId(), that.plot.getId())
|
&& Objects.equals(plot.getId(), that.plot.getId())
|
||||||
&& com.google.common.base.Objects.equal(plot.getOwnerAbs(), that.plot.getOwnerAbs());
|
&& Objects.equals(plot.getOwnerAbs(), that.plot.getOwnerAbs());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public int hashCode() {
|
@Override public int hashCode() {
|
||||||
return com.google.common.base.Objects.hashCode(plot.getArea(), plot.getId(), plot.getOwnerAbs());
|
return Objects.hash(plot.getArea(), plot.getId(), plot.getOwnerAbs());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user