G
greg.johnston
I'm trying to use some imported library stuff, and it won't let
me...I've done
import java.lang.*
And I'm trying to do the following:
public boolean isAlNum(char c) {
return isLetterOrDigit(c);
}
I get:
error:Cannot find method "isLetterOrDigit(char)"
Does anyone have any ideas?
me...I've done
import java.lang.*
And I'm trying to do the following:
public boolean isAlNum(char c) {
return isLetterOrDigit(c);
}
I get:
error:Cannot find method "isLetterOrDigit(char)"
Does anyone have any ideas?