mirror of
https://github.com/lightbend/config.git
synced 2025-03-24 08:10:24 +08:00
Removed char version of isC0Control and made non public
This commit is contained in:
parent
5db8d13694
commit
05cbb65a31
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user