Skip to content

Commit

Permalink
fixed compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvdrum committed Apr 3, 2015
1 parent 98ed266 commit 25fe902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/util/ConvertDouble.java
Expand Up @@ -33,7 +33,7 @@ public class ConvertDouble {
* extra text non-numeric text or multiple sequention underscores.
*/
public static double byteListToDouble19(ByteList bytes, boolean strict) {
return new DoubleConverter().parse(bytes, strict);
return new DoubleConverter().parse(bytes, strict, true);
}

public static class DoubleConverter {
Expand Down

0 comments on commit 25fe902

Please sign in to comment.