Severity | 3 |
---|---|
Enabled | yes |
Waivable | |
Rationale | equals() is part of the java.lang.Object contract whereas compareTo() is part of the java.lang.Comparable contract. Use more generic methods. Not every class implements compareTo(), but each class has equals() method. |