Browse Source

Amelioration sonar

Arthur Brandao 6 năm trước cách đây
mục cha
commit
0e4fd25928
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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
 		}