Repository: commons-lang Updated Branches: refs/heads/master ab60f735c -> 4ff5974c4
Add missing @since tags to StrSubstitutor Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/ecf6de89 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/ecf6de89 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/ecf6de89 Branch: refs/heads/master Commit: ecf6de89ba1a6542c68194e95d14ea944b6c92b7 Parents: ab60f73 Author: Benedikt Ritter <[email protected]> Authored: Sun Sep 11 16:07:25 2016 +0200 Committer: Benedikt Ritter <[email protected]> Committed: Sun Sep 11 16:07:25 2016 +0200 ---------------------------------------------------------------------- src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/ecf6de89/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java b/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java index abc7f3e..126af84 100644 --- a/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java +++ b/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java @@ -1206,6 +1206,7 @@ public class StrSubstitutor { * substitution. * * @return the preserve escape flag + * @since 3.5 */ public boolean isPreserveEscapes() { return preserveEscapes; @@ -1221,6 +1222,7 @@ public class StrSubstitutor { * <code>${this-is-escaped}</code>). The default value is <b>false</b> * * @param preserveEscapes true if escapes are to be preserved + * @since 3.5 */ public void setPreserveEscapes(final boolean preserveEscapes) { this.preserveEscapes = preserveEscapes;
