Fixing javadoc - it was pointing to the wrong translator

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1148164 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-07-19 05:08:14 +00:00
parent 42dd1e1902
commit 2556149b64
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ public class StringEscapeUtils {
* <p>Note that unicode characters greater than 0x7f are as of 3.0, no longer * <p>Note that unicode characters greater than 0x7f are as of 3.0, no longer
* escaped. If you still wish this functionality, you can achieve it * escaped. If you still wish this functionality, you can achieve it
* via the following: * via the following:
* {@code StringEscapeUtils.ESCAPE_XML.with( UnicodeEscaper.between(0x7f, Integer.MAX_VALUE) );}</p> * {@code StringEscapeUtils.ESCAPE_XML.with( NumericEntityEscaper.between(0x7f, Integer.MAX_VALUE) );}</p>
* *
* @param input the {@code String} to escape, may be null * @param input the {@code String} to escape, may be null
* @return a new escaped {@code String}, {@code null} if null string input * @return a new escaped {@code String}, {@code null} if null string input