From e2ba2e95b38bb4dd062392c18c9fb61629772ca4 Mon Sep 17 00:00:00 2001 From: Roman Ivanov Date: Thu, 30 Apr 2015 17:39:26 -0700 Subject: [PATCH] minor extension for docs --- src/xdocs/config_coding.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdocs/config_coding.xml b/src/xdocs/config_coding.xml index 3ed69c244..441719948 100644 --- a/src/xdocs/config_coding.xml +++ b/src/xdocs/config_coding.xml @@ -108,7 +108,7 @@ String b = (a==null || a.length<1) ? null : a.substring(1);

Checks that classes that define a covariant equals() method also override method equals(java.lang.Object). Inspired by findbugs. + href="http://www.cs.nyu.edu/~lharris/papers/findbugsPaper.pdf">Finding Bugs is Easy, chapter '2.3.1 Bad Covariant Definition of Equals (Eq)'.