Add missing @since tags to StrSubstitutor

This commit is contained in:
Benedikt Ritter 2016-09-11 16:07:25 +02:00
parent ab60f735c7
commit ecf6de89ba
1 changed files with 2 additions and 0 deletions

View File

@ -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;