Browse Source

Amelioration sonar

Arthur Brandao 6 years ago
parent
commit
0e4fd25928
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/migl/lisp/util/LispElement.java

+ 1 - 1
src/migl/lisp/util/LispElement.java

@@ -37,7 +37,7 @@ public class LispElement<E> {
 			//Rien
 		}
 		try {
-			return new LispElement(Double.parseDouble(elt));
+			return new LispElement(Double.valueOf(elt));
 		} catch(NumberFormatException ex) {
 			//Rien
 		}