Skip to content

Commit 435f6e7

Browse files
hansonrhansonr
authored andcommitted
swingj2s.js updated
1 parent db4bff2 commit 435f6e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13670,6 +13670,7 @@ if (ev.keyCode == 9 && ev.target["data-focuscomponent"]) {
1367013670

1367113671
// TODO: still a lot of references to window[...]
1367213672

13673+
// BH 2019.05.13 fixes for Math.getExponent, Math.IEEERemainder, Array.equals(Object)
1367313674
// BH 2019.02.16 fixes typo in Integer.parseInt(s,radix)
1367413675
// BH 2019.02.07 fixes radix|10 should be radix||10
1367513676
// BH 1/29/2019 adds String.join$CharSequence$Iterable, String.join$CharSequence$CharSequenceA
@@ -14633,7 +14634,7 @@ Clazz.isClassDefined = function(clazzName) {
1463314634
vals.hashCode$ = function() {return this.toString().hashCode$()}
1463414635

1463514636
vals.equals$O = function (a) {
14636-
if (a.__ARRAYTYPE != this.__ARRAYTYPE || a.length != this.length)
14637+
if (!a || a.__ARRAYTYPE != this.__ARRAYTYPE || a.length != this.length)
1463714638
return false;
1463814639
if (a.length == 0)
1463914640
return true;

0 commit comments

Comments
 (0)