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 2018/02/11 13:03:49 UTC

[lang] CloneFailedException: remove "@since upcoming" from constructors javadoc, because these constructors were added in the same version as the class itself (3.0)

Repository: commons-lang
Updated Branches:
  refs/heads/master 6684a7631 -> 7eb47fd85


CloneFailedException: remove "@since upcoming" from constructors javadoc, because these constructors were added in the same version as the class itself (3.0)


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

Branch: refs/heads/master
Commit: 7eb47fd85e13486033950d91afcf04cf44d064fa
Parents: 6684a76
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Feb 11 14:03:33 2018 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Feb 11 14:03:33 2018 +0100

----------------------------------------------------------------------
 .../org/apache/commons/lang3/exception/CloneFailedException.java  | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/7eb47fd8/src/main/java/org/apache/commons/lang3/exception/CloneFailedException.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/exception/CloneFailedException.java b/src/main/java/org/apache/commons/lang3/exception/CloneFailedException.java
index ae534b4..5fff98c 100644
--- a/src/main/java/org/apache/commons/lang3/exception/CloneFailedException.java
+++ b/src/main/java/org/apache/commons/lang3/exception/CloneFailedException.java
@@ -33,7 +33,6 @@ public class CloneFailedException extends RuntimeException {
      * Constructs a CloneFailedException.
      *
      * @param message description of the exception
-     * @since upcoming
      */
     public CloneFailedException(final String message) {
         super(message);
@@ -43,7 +42,6 @@ public class CloneFailedException extends RuntimeException {
      * Constructs a CloneFailedException.
      *
      * @param cause cause of the exception
-     * @since upcoming
      */
     public CloneFailedException(final Throwable cause) {
         super(cause);
@@ -54,7 +52,6 @@ public class CloneFailedException extends RuntimeException {
      *
      * @param message description of the exception
      * @param cause cause of the exception
-     * @since upcoming
      */
     public CloneFailedException(final String message, final Throwable cause) {
         super(message, cause);