Fix of compilation error - change double to float.

master
Tomasz Półgrabia 2016-09-14 22:20:28 +02:00
parent 48e5b9378f
commit d3b32d87f0
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}