You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2016/06/03 15:59:55 UTC

[1/2] [lang] ArrayUtils#shift: remove duplicated param tag for offset in javadoc

Repository: commons-lang
Updated Branches:
  refs/heads/master 03a2ab275 -> 43a9bab8c


ArrayUtils#shift: remove duplicated param tag for offset in javadoc


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

Branch: refs/heads/master
Commit: 3e3ac124f8de996429366b524f46b3f29c3b408b
Parents: 03a2ab2
Author: pascalschumacher <pa...@gmx.net>
Authored: Fri Jun 3 17:48:02 2016 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Fri Jun 3 17:48:02 2016 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/ArrayUtils.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/3e3ac124/src/main/java/org/apache/commons/lang3/ArrayUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
index 1105725..07766f1 100644
--- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
@@ -2444,7 +2444,6 @@ public class ArrayUtils {
      * <p>This method does nothing for a {@code null} input array.
      *
      * @param array  the array to shift, may be {@code null}
-     * @param offset how many position to the right to shift the array, if negative it will be shiftd to the left.
      * @param offset
      *          The number of positions to rotate the elements.  If the offset is larger than the number of elements to
      *          rotate, than the effective offset is modulo the number of elements to rotate.


[2/2] [lang] Validate: fix javadoc warnings relate to see tags

Posted by pa...@apache.org.
Validate: fix javadoc warnings relate to see tags


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

Branch: refs/heads/master
Commit: 43a9bab8c010d66744ae02b2d26020a946235202
Parents: 3e3ac12
Author: pascalschumacher <pa...@gmx.net>
Authored: Fri Jun 3 17:59:32 2016 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Fri Jun 3 17:59:32 2016 +0200

----------------------------------------------------------------------
 .../java/org/apache/commons/lang3/Validate.java     | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/43a9bab8/src/main/java/org/apache/commons/lang3/Validate.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/Validate.java b/src/main/java/org/apache/commons/lang3/Validate.java
index 9d329b6..5794560 100644
--- a/src/main/java/org/apache/commons/lang3/Validate.java
+++ b/src/main/java/org/apache/commons/lang3/Validate.java
@@ -988,7 +988,7 @@ public class Validate {
      * @param value  the object to validate
      * @param min  the reference value
      * @throws IllegalArgumentException if {@code value} is smaller than or equal to {@code min}
-     * @see #greaterObj(java.lang.Object, java.lang.Comparable, java.lang.String, java.lang.Object...)
+     * @see #greaterObj(java.lang.Comparable, java.lang.Object, java.lang.String, java.lang.Object...)
      *
      * @since 3.5
      */
@@ -1008,7 +1008,7 @@ public class Validate {
      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
      * @param values  the optional values for the formatted exception message
      * @throws IllegalArgumentException if {@code value} is smaller than or equal to {@code min}
-     * @see #greaterObj(java.lang.Object, java.lang.Comparable)
+     * @see #greaterObj(java.lang.Comparable, java.lang.Object)
      *
      * @since 3.5
      */
@@ -1122,7 +1122,7 @@ public class Validate {
      * @param value  the object to validate
      * @param min  the reference value
      * @throws IllegalArgumentException if {@code value} is smaller than {@code min}
-     * @see #greaterOrEqualObj(java.lang.Object, java.lang.Comparable, java.lang.String, java.lang.Object...)
+     * @see #greaterOrEqualObj(java.lang.Comparable, java.lang.Object, java.lang.String, java.lang.Object...)
      *
      * @since 3.5
      */
@@ -1142,7 +1142,7 @@ public class Validate {
      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
      * @param values  the optional values for the formatted exception message
      * @throws IllegalArgumentException if {@code value} is smaller than {@code min}
-     * @see #greaterOrEqualObj(java.lang.Object, java.lang.Comparable)
+     * @see #greaterOrEqualObj(java.lang.Comparable, java.lang.Object)
      *
      * @since 3.5
      */
@@ -1256,7 +1256,7 @@ public class Validate {
      * @param value  the object to validate
      * @param max  the reference value
      * @throws IllegalArgumentException if {@code value} is greater than or equal to {@code max}
-     * @see #smallerObj(java.lang.Object, java.lang.Comparable, java.lang.String, java.lang.Object...)
+     * @see #smallerObj(java.lang.Comparable, java.lang.Object, java.lang.String, java.lang.Object...)
      *
      * @since 3.5
      */
@@ -1276,7 +1276,7 @@ public class Validate {
      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
      * @param values  the optional values for the formatted exception message
      * @throws IllegalArgumentException if {@code value} is greater than or equal to {@code max}
-     * @see #smallerObj(java.lang.Object, java.lang.Comparable)
+     * @see #smallerObj(java.lang.Comparable, java.lang.Object)
      *
      * @since 3.5
      */
@@ -1390,7 +1390,7 @@ public class Validate {
      * @param value  the object to validate
      * @param max  the reference value
      * @throws IllegalArgumentException if {@code value} is greater than {@code max}
-     * @see #smallerOrEqualObj(java.lang.Object, java.lang.Comparable, java.lang.String, java.lang.Object...)
+     * @see #smallerOrEqualObj(java.lang.Comparable, java.lang.Object, java.lang.String, java.lang.Object...)
      *
      * @since 3.5
      */
@@ -1410,7 +1410,7 @@ public class Validate {
      * @param message  the {@link String#format(String, Object...)} exception message if invalid, not null
      * @param values  the optional values for the formatted exception message
      * @throws IllegalArgumentException if {@code value} is greater than {@code max}
-     * @see #smallerOrEqualObj(java.lang.Object, java.lang.Comparable)
+     * @see #smallerOrEqualObj(java.lang.Comparable, java.lang.Object)
      *
      * @since 3.5
      */