Fix compile

This commit is contained in:
Jesse Boyd
2018-08-16 00:04:16 +10:00
parent be574391ed
commit 659ed09bf1
8 changed files with 11 additions and 13 deletions

View File

@ -353,7 +353,7 @@ public class MathMan {
return x;
}
public static final boolean isInteger(String str) {
public static final boolean isInteger(CharSequence str) {
if (str == null) {
return false;
}