Skip to content

Commit a527e14

Browse files
committed
natives out
1 parent 27b0414 commit a527e14

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sources/net.sf.j2s.java.core/src/java/io/DataInputStream.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,6 @@ public final long readLong() throws IOException {
478478
*/
479479
@Override
480480
public final float readFloat() throws IOException {
481-
// fails in JavaScript because we are missing a native method
482481
return Float.intBitsToFloat(readInt());
483482
}
484483

@@ -502,7 +501,6 @@ public final float readFloat() throws IOException {
502501
*/
503502
@Override
504503
public final double readDouble() throws IOException {
505-
// fails in JavaScript because we are missing a native method
506504
return Double.longBitsToDouble(readLong());
507505
}
508506

0 commit comments

Comments
 (0)