Skip to content

Commit

Permalink
Remove unused functions
Browse files Browse the repository at this point in the history
  • Loading branch information
casko1 committed Mar 18, 2024
1 parent 1c86c51 commit 995b9dc
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,6 @@ public static boolean isFloat(String arg) {
}
}

public static boolean isDouble(String arg) {
try {
Double.parseDouble(arg);
return true;
} catch (NumberFormatException e) {
return false;
}
}

public static boolean isInteger(String arg) {
try {
Integer.parseInt(arg);
Expand Down

0 comments on commit 995b9dc

Please sign in to comment.