]> source.dussan.org Git - poi.git/commitdiff
fix missing spaces
authorSergey Vladimirov <sergey@apache.org>
Fri, 22 Jul 2011 14:05:39 +0000 (14:05 +0000)
committerSergey Vladimirov <sergey@apache.org>
Fri, 22 Jul 2011 14:05:39 +0000 (14:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149609 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordConverter.java

index 38968f082f0f48837c2f19a24b23ab83b778cdc5..dbb337a8f2eccc88fef133da2d1f3010840457b1 100644 (file)
@@ -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 );