We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27b0414 commit a527e14Copy full SHA for a527e14
sources/net.sf.j2s.java.core/src/java/io/DataInputStream.java
@@ -478,7 +478,6 @@ public final long readLong() throws IOException {
478
*/
479
@Override
480
public final float readFloat() throws IOException {
481
- // fails in JavaScript because we are missing a native method
482
return Float.intBitsToFloat(readInt());
483
}
484
@@ -502,7 +501,6 @@ public final float readFloat() throws IOException {
502
501
503
504
public final double readDouble() throws IOException {
505
506
return Double.longBitsToDouble(readLong());
507
508
0 commit comments