gnu.trove.CanonicalEquality Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trove4j Show documentation
Show all versions of trove4j Show documentation
Fork of trove4j library used in IntelliJ Platform.
The newest version!
package gnu.trove;
class CanonicalEquality implements Equality {
public boolean equals(T o1, T o2) {
return o1 != null ? o1.equals(o2) : o2 == null;
}
}