Skip to content

Commit

Permalink
Removed char version of isC0Control and made non public
Browse files Browse the repository at this point in the history
  • Loading branch information
carylee committed Jul 9, 2015
1 parent 5db8d13 commit 05cbb65
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,7 @@ else if (a == b) // catches null == null plus optimizes identity case
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);
}

Expand Down

0 comments on commit 05cbb65

Please sign in to comment.