Rename LANG_2_5_COPY tag to LANG_2_5 - step three in reverting r931440
See http://svn.apache.org/viewvc?view=revision&revision=931440
    http://markmail.org/message/ghuxod3t3q5qyqye
    http://svn.apache.org/viewvc?view=revision&revision=931601
    http://svn.apache.org/viewvc?view=revision&revision=931603

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/tags/LANG_2_5@931604 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/lang/StringUtils.java b/src/main/java/org/apache/commons/lang/StringUtils.java
index aa60c75..1e45cba 100644
--- a/src/main/java/org/apache/commons/lang/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang/StringUtils.java
@@ -4516,6 +4516,7 @@
      * @param repeat  number of times to repeat str, negative treated as zero
      * @return a new String consisting of the original String repeated,
      *  <code>null</code> if null String input
+     * @since 2.5
      */
     public static String repeat(String str, int repeat) {
         // Performance tuned for 2.0 (JDK1.4)
@@ -4579,7 +4580,6 @@
      * @param repeat     number of times to repeat str, negative treated as zero
      * @return a new String consisting of the original String repeated,
      *  <code>null</code> if null String input
-     * @since 2.5
      */
     public static String repeat(String str, String separator, int repeat) {
         if(str == null || separator == null) {