Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9dce844

Browse files
authored
Merge pull request #204 from BobHanson/hanson1
Hanson1
2 parents 084e114 + d5de496 commit 9dce844

File tree

100 files changed

+7504
-1668
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+7504
-1668
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20211009053211
1+
20220831192432
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20210208070817
1+
20220627235431
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20211009053211
1+
20220831192432

sources/net.sf.j2s.core/src/net/sf/j2s/core/CorePlugin.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ public class CorePlugin extends Plugin {
2525
* "net.sf.j2s.core.jar" not "net.sf.j2s.core.3.2.5"
2626
*
2727
*/
28-
public static String VERSION = "3.3.1-v1";
28+
public static String VERSION = "3.3.1-v5";
2929

3030
// if you change the x.x.x number, be sure to also indicate that in
3131
// j2sApplet.js and also (Bob only) update.bat, update-clean.bat
3232

33+
// BH 2022.06.27 -- 3.3.1-v5 fixes missing method annotations
34+
// BH 2022.01.17 -- 3.3.1-v4 fixes default interface methods referencing their own static fields
3335
// BH 2021.01.14 -- 3.3.1-v3 fixes missing finals for nested () -> {...}
3436
// BH 2021.01.03 -- 3.3.1-v2 adds @j2sAsync adds async for function - experimental
3537
// BH 2002.12.31 -- 3.3.1-v1 introduces full primitive 64-bit long support.

sources/net.sf.j2s.core/src/net/sf/j2s/core/Java2ScriptCompiler.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class Java2ScriptCompiler {
123123
private static final String J2S_COMPILER_READ_ANNOTATIONS = "j2s.compiler.read.annotations";
124124
private static final String J2S_COMPILER_READ_ANNOTATIONS_DEFAULT = "true";
125125
private static final String J2S_COMPILER_IGNORED_ANNOTATIONS = "j2s.compiler.ignored.annotations";
126-
private static final String J2S_COMPILER_IGNORED_ANNOTATIONS_DEFAULT =
126+
static final String J2S_COMPILER_IGNORED_ANNOTATIONS_DEFAULT =
127127
"CallerSensitive;"
128128
+ "ConstructorProperties;"
129129
+ "Deprecated;"
@@ -135,7 +135,8 @@ class Java2ScriptCompiler {
135135
+ "Inherited;"
136136
+ "Native;"
137137
+ "Repeatable;"
138-
+ "Retention;";
138+
+ "Retention;"
139+
+ "Transient;";
139140

140141
private static final String J2S_COMPILER_NONQUALIFIED_PACKAGES = "j2s.compiler.nonqualified.packages";
141142
private static final String J2S_COMPILER_NONQUALIFIED_PACKAGES_DEFAULT = "<none>";

0 commit comments

Comments
 (0)