File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
sources/net.sf.j2s.java.core/srcjs Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments