Removed char version of isC0Control and made non public

This commit is contained in:
Cary Lee 2015-07-09 08:13:07 -07:00
parent 5db8d13694
commit 05cbb65a31

View File

@ -32,11 +32,7 @@ final public class ConfigImplUtil {
return a.equals(b);
}
public static boolean isC0Control(final char ch) {
return isC0Control((int)ch);
}
public static boolean isC0Control(int codepoint) {
static boolean isC0Control(int codepoint) {
return (codepoint >= 0x0000 && codepoint <= 0x001F);
}