classpath progress

This commit is contained in:
Joel Dice
2007-07-27 17:56:19 -06:00
parent c9f9b039e6
commit 363801af1c
10 changed files with 211 additions and 24 deletions

View File

@ -45,7 +45,7 @@ public final class Character {
return (c >= 'A' && c <= 'Z');
}
public static boolean isWhiteSpace(char c) {
public static boolean isWhitespace(char c) {
return c == ' ' || c == '\t' || c == '\n';
}
}