Author: sebb
Date: Thu Apr 7 20:03:59 2011
New Revision: 1089968
URL: http://svn.apache.org/viewvc?rev=1089968&view=rev
Log:
Rewrap text
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java?rev=1089968&r1=1089967&r2=1089968&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
Thu Apr 7 20:03:59 2011
@@ -634,8 +634,8 @@ public class StringUtils {
} else if (sunAvailable) {
result = removeAccentsSUN(input);
} else {
- throw new UnsupportedOperationException("The
stripAccents(CharSequence) method requires at least "
- + "Java 1.6 or a Sun JVM");
+ throw new UnsupportedOperationException(
+ "The stripAccents(CharSequence) method requires at least
Java 1.6 or a Sun JVM");
}
// Note that none of the above methods correctly remove
ligatures...
return result;