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 2013/05/30 18:36:11 UTC

svn commit: r1487921 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java

Author: sebb
Date: Thu May 30 16:36:11 2013
New Revision: 1487921

URL: http://svn.apache.org/r1487921
Log:
LANG-836 StrSubstitutor does not support StringBuilder or CharSequence
Forgot to correct @since tags

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

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java?rev=1487921&r1=1487920&r2=1487921&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java Thu May 30 16:36:11 2013
@@ -418,7 +418,7 @@ public class StrSubstitutor {
      *
      * @param source  the buffer to use as a template, not changed, null returns null
      * @return the result of the replace operation
-     * @since TODO
+     * @since 3.2
      */
     public String replace(CharSequence source) {
         if (source == null) {
@@ -439,7 +439,7 @@ public class StrSubstitutor {
      * @param offset  the start offset within the array, must be valid
      * @param length  the length within the array to be processed, must be valid
      * @return the result of the replace operation
-     * @since TODO
+     * @since 3.2
      */
     public String replace(CharSequence source, int offset, int length) {
         if (source == null) {
@@ -557,7 +557,7 @@ public class StrSubstitutor {
      *
      * @param source  the buffer to replace in, updated, null returns zero
      * @return true if altered
-     * @since TODO
+     * @since 3.2
      */
     public boolean replaceIn(StringBuilder source) {
         if (source == null) {
@@ -578,7 +578,7 @@ public class StrSubstitutor {
      * @param offset  the start offset within the array, must be valid
      * @param length  the length within the buffer to be processed, must be valid
      * @return true if altered
-     * @since TODO
+     * @since 3.2
      */
     public boolean replaceIn(StringBuilder source, int offset, int length) {
         if (source == null) {