Removed errant main method

This commit is contained in:
moandji.ezana 2015-02-08 22:55:06 +02:00
parent 5d17559728
commit b70661a683

View file

@ -11,10 +11,6 @@ class NumberConverter implements ValueConverter {
return firstChar == '+' || firstChar == '-' || Character.isDigit(firstChar);
}
public static void main(String[] args) {
new NumberConverter().convert("5e+22");
}
@Override
public Object convert(String s) {