remove Input file related stuff from the compiler and runtime system
[IRC.git] / Robust / src / ClassLibrary / MGC / gnu / Float.java
index 12515b7f43a0691c6fed74c2eb1346990c1b1790..a7353d71359efa642b674c22e2e6e2cefeff0492 100644 (file)
@@ -355,7 +355,7 @@ public final class Float
   public static float parseFloat(String str)
   {
     //return VMFloat.parseFloat(str);
-    return (float)Double.parseDouble(str);
+    return (float)(Double.parseDouble(str));
   }
 
   /**