Skip to content

Commit

Permalink
Update EqualsHashCodeAndToStringEvaluator.java
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyMaci committed Nov 23, 2018
1 parent ad96ec4 commit 6a7518c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,11 @@ public static <T> boolean evaluateEqualsHashcodeAndToString(Class<T> cls,
* @return true, if reflexivity and non-null contract conditions from
* {@link Object#equals(Object)} and the consistency contract condition of
* {@link Object#hashCode()} is given otherwise false
*
* @deprecated use instead the <code>EqualsEvaluator.evaluateReflexivityAndNonNull</code> method in combination with
* the <code>HashcodeEvaluator.evaluateConsistency</code> and the <code>ToStringEvaluator.evaluateConsistency</code>
* method. <br><br>
* Note: will be removed in the next minor version
*/
public static <T> boolean evaluateEqualsHashcodeAndToString(final T object)
{
Expand Down

0 comments on commit 6a7518c

Please sign in to comment.