mirror of
https://github.com/plexusorg/toml4j.git
synced 2024-11-01 01:39:26 +00:00
Removed errant main method
This commit is contained in:
parent
5d17559728
commit
b70661a683
|
@ -12,10 +12,6 @@ class NumberConverter implements ValueConverter {
|
||||||
return firstChar == '+' || firstChar == '-' || Character.isDigit(firstChar);
|
return firstChar == '+' || firstChar == '-' || Character.isDigit(firstChar);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
|
||||||
new NumberConverter().convert("5e+22");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object convert(String s) {
|
public Object convert(String s) {
|
||||||
char[] chars = s.toCharArray();
|
char[] chars = s.toCharArray();
|
||||||
|
|
Loading…
Reference in a new issue