Author: bayard
Date: Sat Nov 14 10:46:04 2009
New Revision: 836152
URL: http://svn.apache.org/viewvc?rev=836152&view=rev
Log:
Changing the note on high > 0x7f characters being escaped. LANG-516
Modified:
commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringEscapeUtils.java
Modified:
commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringEscapeUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringEscapeUtils.java?rev=836152&r1=836151&r2=836152&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringEscapeUtils.java
(original)
+++
commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringEscapeUtils.java
Sat Nov 14 10:46:04 2009
@@ -328,8 +328,8 @@
* <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 @@
* <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