org.sonar.l10n.findbugs.EQ_ALWAYS_FALSE.html Maven / Gradle / Ivy
This class defines an equals method that always returns false. This means that an object is not equal to itself, and it is impossible to create useful Maps or Sets of this class. More fundamentally, it means
that equals is not reflexive, one of the requirements of the equals method.
The likely intended semantics are object identity: that an object is equal to itself. This is the behavior inherited from class Object
. If you need to override an equals inherited from a different
superclass, you can use use:
public boolean equals(Object o) { return this == o; }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy