Fixed escaping of backslash-u in javadoc notes for issue reported in LANG-66
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@418833 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7f8f3da321
commit
9c2f070f61
|
@ -567,7 +567,7 @@ public class StringEscapeUtils {
|
|||
* 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>
|
||||
* their numerical \\u equivalent. This may change in future releases. </p>
|
||||
*
|
||||
* @param writer the writer receiving the unescaped string, not null
|
||||
* @param str the <code>String</code> to escape, may be null
|
||||
|
@ -596,7 +596,7 @@ public class StringEscapeUtils {
|
|||
* 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>
|
||||
* their numerical \\u equivalent. This may change in future releases. </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
|
||||
|
@ -618,7 +618,7 @@ public class StringEscapeUtils {
|
|||
* <p>Supports only the five basic XML entities (gt, lt, quot, amp, apos).
|
||||
* Does not support DTDs or external entities.</p>
|
||||
*
|
||||
* <p>Note that numerical \u unicode codes are unescaped to their respective
|
||||
* <p>Note that numerical \\u unicode codes are unescaped to their respective
|
||||
* unicode characters. This may change in future releases. </p>
|
||||
*
|
||||
* @param writer the writer receiving the unescaped string, not null
|
||||
|
@ -645,7 +645,7 @@ public class StringEscapeUtils {
|
|||
* <p>Supports only the five basic XML entities (gt, lt, quot, amp, apos).
|
||||
* Does not support DTDs or external entities.</p>
|
||||
*
|
||||
* <p>Note that numerical \u unicode codes are unescaped to their respective
|
||||
* <p>Note that numerical \\u unicode codes are unescaped to their respective
|
||||
* unicode characters. This may change in future releases. </p>
|
||||
*
|
||||
* @param str the <code>String</code> to unescape, may be null
|
||||
|
|
Loading…
Reference in New Issue