Redundant return.
diff --git a/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java b/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
index 50d8118..f86fae4 100644
--- a/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
+++ b/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
@@ -552,7 +552,6 @@
             // If a subclass has ivars that we are trying to test them, we get an
             // exception and we know that the objects are not equal.
             isEquals = false;
-            return this;
         }
         return this;
     }