You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2017/04/17 12:19:53 UTC

[30/50] [lang] Correct @since annotation

Correct @since annotation


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

Branch: refs/heads/release
Commit: 54c3daaf17f90b273cfd3dc17dac91c9e65d7b17
Parents: 1674c95
Author: Benedikt Ritter <be...@gmail.com>
Authored: Mon Mar 27 20:09:14 2017 +0200
Committer: Benedikt Ritter <be...@gmail.com>
Committed: Mon Mar 27 20:09:14 2017 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/StringUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/54c3daaf/src/main/java/org/apache/commons/lang3/StringUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java
index 98a2d0c..6181835 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -7560,7 +7560,7 @@ public class StringUtils {
      * @param maxWidth  maximum length of result String, must be at least {@code abbrevMarker.length + 1}
      * @return abbreviated String, {@code null} if null String input
      * @throws IllegalArgumentException if the width is too small
-     * @since 3.5
+     * @since 3.6
      */
     public static String abbreviate(final String str, final String abbrevMarker, final int maxWidth) {
         return abbreviate(str, abbrevMarker, 0, maxWidth);
@@ -7601,7 +7601,7 @@ public class StringUtils {
      * @param maxWidth  maximum length of result String, must be at least 4
      * @return abbreviated String, {@code null} if null String input
      * @throws IllegalArgumentException if the width is too small
-     * @since 3.5
+     * @since 3.6
      */
     public static String abbreviate(final String str, final String abbrevMarker, int offset, final int maxWidth) {
         if (isEmpty(str) || isEmpty(abbrevMarker)) {