Repository: commons-lang
Updated Branches:
  refs/heads/master 31fcd3bd8 -> f13d18cff


Javadoc change to address LANG-872. 

Javadocs for append(Object[],Object[]) updated to indicate it only
compares the contents of the arrays, not the type of the arrays.

Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/f13d18cf
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/f13d18cf
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/f13d18cf

Branch: refs/heads/master
Commit: f13d18cff3f0932e727dda04bf80008fc2fbbc70
Parents: 31fcd3b
Author: duncan <dun...@wortharead.com>
Authored: Mon Dec 12 15:25:18 2016 +0000
Committer: duncan <dun...@wortharead.com>
Committed: Mon Dec 12 15:25:18 2016 +0000

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/f13d18cf/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
----------------------------------------------------------------------
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 f0c8196..aa7fb06 100644
--- a/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
+++ b/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
@@ -794,6 +794,9 @@ public class EqualsBuilder implements Builder<Boolean> {
      *
      * <p>This also will be called for the top level of
      * multi-dimensional, ragged, and multi-typed arrays.</p>
+     * 
+     * <p>Note that this method does not compare the type of the arrays; it 
only
+     * compares the contents.</p>
      *
      * @param lhs  the left hand <code>Object[]</code>
      * @param rhs  the right hand <code>Object[]</code>

Reply via email to