Skip to content

Commit 6b8de90

Browse files
committed
String.concat$S missing
1 parent ad445bd commit 6b8de90

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
49 Bytes
Binary file not shown.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
// Google closure compiler cannot handle Clazz.new or Clazz.super
99

10+
// BH 6/25/2018 3:06:30 PM adds String.concat$S
1011
// BH 6/25/2018 12:10:25 PM Character.toTitleCase, isTitleCase as ...UpperCase
1112
// BH 6/25/2018 10:23:24 AM really fixing new int[] {'a'} using .$c() see Test_Byte.java
1213
// BH 6/21/2018 1:08:58 PM missing mysterious Integer.objectValue()
@@ -3762,7 +3763,7 @@ dst[dstBegin+i]=this.charAt(srcBegin+i);
37623763
};
37633764

37643765
sp.$concat=sp.concat;
3765-
sp.concat=function(s){
3766+
sp.concat = sp.concat$S = function(s){
37663767
if(s==null){
37673768
throw new NullPointerException();
37683769
}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13094,6 +13094,7 @@ J2S._getResourcePath = function(path, isJavaPath) {
1309413094

1309513095
// Google closure compiler cannot handle Clazz.new or Clazz.super
1309613096

13097+
// BH 6/25/2018 3:06:30 PM adds String.concat$S
1309713098
// BH 6/25/2018 12:10:25 PM Character.toTitleCase, isTitleCase as ...UpperCase
1309813099
// BH 6/25/2018 10:23:24 AM really fixing new int[] {'a'} using .$c() see Test_Byte.java
1309913100
// BH 6/21/2018 1:08:58 PM missing mysterious Integer.objectValue()
@@ -16849,7 +16850,7 @@ dst[dstBegin+i]=this.charAt(srcBegin+i);
1684916850
};
1685016851

1685116852
sp.$concat=sp.concat;
16852-
sp.concat=function(s){
16853+
sp.concat = sp.concat$S = function(s){
1685316854
if(s==null){
1685416855
throw new NullPointerException();
1685516856
}

0 commit comments

Comments
 (0)