Description
The Javadocs for StringUtils.normalizeSpace state:
"The function returns the argument string with whitespace normalized by using trim(String) to remove leading and trailing whitespace and then replacing sequences of whitespace characters by a single space."
Looking at the source code StringUtils.normalizeSpace actually uses strip, not trim. The difference is subtle, but should be corrected.