You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/12/14 15:10:55 UTC

svn commit: r890336 - /commons/proper/lang/trunk/src/java/org/apache/commons/lang3/text/StrBuilder.java

Author: sebb
Date: Mon Dec 14 14:10:55 2009
New Revision: 890336

URL: http://svn.apache.org/viewvc?rev=890336&view=rev
Log:
Changing appendAll and appendWithSeparators methods to take Iterable instead of Collection. LANG-548 - part two, change Javadoc references

Modified:
    commons/proper/lang/trunk/src/java/org/apache/commons/lang3/text/StrBuilder.java

Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang3/text/StrBuilder.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang3/text/StrBuilder.java?rev=890336&r1=890335&r2=890336&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/java/org/apache/commons/lang3/text/StrBuilder.java (original)
+++ commons/proper/lang/trunk/src/java/org/apache/commons/lang3/text/StrBuilder.java Mon Dec 14 14:10:55 2009
@@ -18,7 +18,6 @@
 
 import java.io.Reader;
 import java.io.Writer;
-import java.util.Collection;
 import java.util.Iterator;
 import java.util.List;
 
@@ -1090,7 +1089,7 @@
      * }
      * </pre>
      * Note that for this simple example, you should use
-     * {@link #appendWithSeparators(Collection, String)}.
+     * {@link #appendWithSeparators(Iterable, String)}.
      * 
      * @param separator  the separator to use, null means no separator
      * @return this, to enable chaining
@@ -1148,7 +1147,7 @@
      * }
      * </pre>
      * Note that for this simple example, you should use
-     * {@link #appendWithSeparators(Collection, String)}.
+     * {@link #appendWithSeparators(Iterable, String)}.
      * 
      * @param separator  the separator to use
      * @return this, to enable chaining
@@ -1195,7 +1194,7 @@
      * }
      * </pre>
      * Note that for this simple example, you should use
-     * {@link #appendWithSeparators(Collection, String)}.
+     * {@link #appendWithSeparators(Iterable, String)}.
      * 
      * @param separator  the separator to use, null means no separator
      * @param loopIndex  the loop index
@@ -1222,7 +1221,7 @@
      * }
      * </pre>
      * Note that for this simple example, you should use
-     * {@link #appendWithSeparators(Collection, String)}.
+     * {@link #appendWithSeparators(Iterable, String)}.
      * 
      * @param separator  the separator to use
      * @param loopIndex  the loop index