Pascal Schumacher created LANG-1282:
---------------------------------------
Summary: StringUtils#normalizeSpace normalizeSpace should not
replace non-breaking spaces with normal whitespace
Key: LANG-1282
URL: https://issues.apache.org/jira/browse/LANG-1282
Project: Commons Lang
Issue Type: Bug
Affects Versions: 3.5
Reporter: Pascal Schumacher
As of 3.4 StringUtils#normalizeSpace does not normalize non-breaking whitespace
anymore. Therefore it shouldn't replace a non-breaking whitespace white
breaking whitespace, but both assertions succeed:
{code}
assertEquals("a b", StringUtils.normalizeSpace("a\u00A0b"));
assertEquals("a b", StringUtils.normalizeSpace("a\u00A0 b"));
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)