mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 11:44:36 +00:00
xml import fixes
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user