mehb-groww / test2

Boxing a value is redundant if it is immediately unboxed JAVA-W1051
Performance
Minor
1 occurrence in this check
34            char c = s.charAt(i);
35            if (!(c < 256  && (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= 128 && c <= 237))) {
36                write.append("\\x");
37                write.append(Integer.toHexString((int) c));38            } else {
39                write.append(c);
40            }