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