Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/3.3' into 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tinwelint committed Apr 17, 2018
2 parents d3e9eaf + 5f969d7 commit 606b2ec
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,16 +224,16 @@ private int rtrim()

private boolean isWhitespace( int ch )
{
return ch == ' ' |
ch == Character.SPACE_SEPARATOR |
ch == Character.PARAGRAPH_SEPARATOR |
ch == '\u00A0' |
ch == '\u001C' |
ch == '\u001D' |
ch == '\u001E' |
ch == '\u001F' |
ch == '\u2007' |
ch == '\u202F' |
return ch == ' ' ||
ch == Character.SPACE_SEPARATOR ||
ch == Character.PARAGRAPH_SEPARATOR ||
ch == '\u00A0' ||
ch == '\u001C' ||
ch == '\u001D' ||
ch == '\u001E' ||
ch == '\u001F' ||
ch == '\u2007' ||
ch == '\u202F' ||
ch == '\t';

}
Expand Down

0 comments on commit 606b2ec

Please sign in to comment.