Fix of compilation error - change double to float.
parent
48e5b9378f
commit
d3b32d87f0
|
@ -41,7 +41,7 @@ public class NumberUtils {
|
||||||
String trimmed = s.trim();
|
String trimmed = s.trim();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
return Double.parseDouble(trimmed);
|
return Float.parseFloat(trimmed);
|
||||||
} catch (NumberFormatException e) {
|
} catch (NumberFormatException e) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue