Skip to content

Commit 5f4da2a

Browse files
hansonrhansonr
authored andcommitted
Java 8 upgrade - in progress
1 parent b1af5b2 commit 5f4da2a

File tree

18 files changed

+220
-128
lines changed

18 files changed

+220
-128
lines changed

sources/net.sf.j2s.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ Require-Bundle: org.eclipse.core.runtime,
99
org.eclipse.jdt.core,
1010
org.eclipse.core.resources
1111
Eclipse-AutoStart: true
12-
Export-Package: net.sf.j2s.core.astvisitors,
13-
net.sf.j2s.core.compiler,
14-
net.sf.j2s.core
12+
Export-Package: net.sf.j2s.core
-1.3 MB
Binary file not shown.
-103 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20180805231348
1+
20180806111129
-1.3 MB
Binary file not shown.
-103 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20180805231348
1+
20180806111129

sources/net.sf.j2s.core/plugin.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
<extension
66
point="org.eclipse.jdt.core.compilationParticipant">
77
<compilationParticipant
8-
class="net.sf.j2s.core.compiler.Java2ScriptCompilationParticipant"
8+
class="net.sf.j2s.core.Java2ScriptCompilationParticipant"
99
createsProblems="false"
1010
id="Java2Script CompilationParticipant"
1111
modifiesEnvironment="false"
1212
requiredSourceLevel="1.6">
1313
</compilationParticipant>
1414
</extension>
1515

16-
<!-- 3.2.1 now does not use a special builder. This is just for legacy code -->
1716

1817
</plugin>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class CorePlugin extends Plugin {
1919
* register the bundle version properly. So we use VERSION here instead.
2020
*
2121
*/
22-
public static String VERSION = "3.2.2.02";
22+
public static String VERSION = "3.2.2.03";
2323

2424
/**
2525
* The constructor.

sources/net.sf.j2s.core/src/net/sf/j2s/core/compiler/Java2ScriptCompilationParticipant.java renamed to sources/net.sf.j2s.core/src/net/sf/j2s/core/Java2ScriptCompilationParticipant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.sf.j2s.core.compiler;
1+
package net.sf.j2s.core;
22

33
import org.eclipse.jdt.core.IJavaProject;
44
import org.eclipse.jdt.core.compiler.BuildContext;

0 commit comments

Comments
 (0)