You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/21 18:51:22 UTC

[commons-lang] branch master updated: Redundant return.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 90e357d  Redundant return.
90e357d is described below

commit 90e357d461d672d6e9110103cdb9f335dff9229b
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 13:51:16 2020 -0500

    Redundant return.
---
 src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java | 1 -
 1 file changed, 1 deletion(-)

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 @@ public class EqualsBuilder implements Builder<Boolean> {
             // 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;
     }