[ 
https://issues.apache.org/jira/browse/LANG-1184?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15103805#comment-15103805
 ] 

ASF GitHub Bot commented on LANG-1184:
--------------------------------------

Github user PascalSchumacher commented on the pull request:

    https://github.com/apache/commons-lang/pull/113#issuecomment-172357021
  
    @hen  Thanks again for the in-depth review.
    
    Part of the is `isEmpty()` is necessary, because `normalizeSpace` has to 
return `null` for `null` parameters according to javadoc `@return the modified 
string with whitespace normalized, {@code null} if null String input`
    
    I have updated the pull request and replaced the is `isEmpty()` check by 
`str == null`.
    
    I have also updated javadoc to reflect that non-breaking space is 
normalized.


> StringUtils#normalizeSpace no longer normalizes unicode non-breaking spaces 
> (\u00A0) and does not trim control chars at the end any more
> ----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: LANG-1184
>                 URL: https://issues.apache.org/jira/browse/LANG-1184
>             Project: Commons Lang
>          Issue Type: Bug
>          Components: lang.*
>    Affects Versions: 3.4
>            Reporter: Pascal Schumacher
>
> These work with 3.3.2, but fail with 3.4
> {code:java}assertEquals("a b", StringUtils.normalizeSpace("a\u00A0 b"));{code}
> {code:java}assertEquals("b", StringUtils.normalizeSpace("b\u0000"));{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to