mirror of https://github.com/apache/poi.git
fix missing spaces
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149609 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
106e3e0dfe
commit
4997081f21
|
@ -303,7 +303,7 @@ public abstract class AbstractWordConverter
|
|||
// Non-required hyphens to zero-width space
|
||||
stringBuilder.append( UNICODECHAR_ZERO_WIDTH_SPACE );
|
||||
}
|
||||
else if ( charChar > 0x20 || charChar == 0x09
|
||||
else if ( charChar >= 0x20 || charChar == 0x09
|
||||
|| charChar == 0x0A || charChar == 0x0D )
|
||||
{
|
||||
stringBuilder.append( charChar );
|
||||
|
|
Loading…
Reference in New Issue