1 <p> 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
2 that equals is not reflexive, one of the requirements of the equals method.</p>
3 <p>The likely intended semantics are object identity: that an object is equal to itself. This is the behavior inherited from class <code>Object</code>. If you need to override an equals inherited from a different
4 superclass, you can use use:
6 public boolean equals(Object o) { return this == o; }