more string builders 1

This commit is contained in:
honfika@gmail.com
2015-05-20 15:01:58 +02:00
parent 0670f0e36f
commit 18592b7a72
21 changed files with 357 additions and 294 deletions

View File

@@ -386,7 +386,7 @@ public class IdentifiersDeobfuscation {
} else if (c == '\u00A7') {
ret.append("\\\u00A7");
} else if (c < 32) {
ret.append("\\x").append(Helper.padZeros(Integer.toHexString((int) c), 2));
ret.append("\\x").append(Helper.byteToHex((byte) c));
} else {
ret.append(c);
}