Skip to content

Commit b5a4eb0

Browse files
committed
mixup of Float.MIN_VALUE and Float.MAX_VALUE
(not relevant, since these are correctly substituted anyway)
1 parent b6546df commit b5a4eb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sources/net.sf.j2s.java.core/srcjs/js/j2sClazz.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3106,8 +3106,8 @@ return new Int32Array(a.buffer)[0];
31063106
}
31073107

31083108
Float.serialVersionUID=Float.prototype.serialVersionUID=-2671257302660747028;
3109-
Float.MIN_VALUE=Float.prototype.MIN_VALUE=3.4028235e+38;
3110-
Float.MAX_VALUE=Float.prototype.MAX_VALUE=1.4e-45;
3109+
Float.MIN_VALUE=Float.prototype.MIN_VALUE=1.4e-45;
3110+
Float.MAX_VALUE=Float.prototype.MAX_VALUE=3.4028235e+38;
31113111
Float.NEGATIVE_INFINITY=Number.NEGATIVE_INFINITY;
31123112
Float.POSITIVE_INFINITY=Number.POSITIVE_INFINITY;
31133113
Float.NaN=Number.NaN;

0 commit comments

Comments
 (0)