Changing the note on high > 0x7f characters being escaped. LANG-516

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@836152 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2009-11-14 10:46:04 +00:00
parent 000bac6b94
commit ab1bf739da
1 changed files with 4 additions and 4 deletions

View File

@ -328,8 +328,8 @@ public static void unescapeHtml(Writer writer, String string) throws IOException
* <p>Supports only the five basic XML entities (gt, lt, quot, amp, apos).
* Does not support DTDs or external entities.</p>
*
* <p>Note that unicode characters greater than 0x7f are currently escaped to
* their numerical \\u equivalent. This may change in future releases. </p>
* <p>Note that unicode characters greater than 0x7f are as of 3.0, no longer
* escaped. </p>
*
* @param writer the writer receiving the unescaped string, not null
* @param str the <code>String</code> to escape, may be null
@ -351,8 +351,8 @@ public static void escapeXml(Writer writer, String str) throws IOException {
* <p>Supports only the five basic XML entities (gt, lt, quot, amp, apos).
* Does not support DTDs or external entities.</p>
*
* <p>Note that unicode characters greater than 0x7f are currently escaped to
* their numerical \\u equivalent. This may change in future releases. </p>
* <p>Note that unicode characters greater than 0x7f are as of 3.0, no longer
* escaped. </p>
*
* @param str the <code>String</code> to escape, may be null
* @return a new escaped <code>String</code>, <code>null</code> if null string input