xml import fixes

This commit is contained in:
honfika@gmail.com
2015-01-18 14:04:53 +01:00
parent 3ee9903bb3
commit 19256260d0
29 changed files with 284 additions and 75 deletions

View File

@@ -873,7 +873,7 @@ public class Helper {
StringBuilder sb = new StringBuilder(text.length());
for (int i = 0; i < text.length(); i++) {
char ch = text.charAt(i);
if (i > 31 || i == 9 || i == 10 || i == 13) {
if (ch > 31 || ch == 9 || ch == 10 || ch == 13) {
sb.append(ch);
}
}