Skip to content

Commit e6bbf10

Browse files
author
zhourenjian
committed
1. Fixed bug that "private E[] newElementArray(int capcity)" may be ignored by Java2Script compiler.
2. Add "pack.j2slib.war" target in Java2Script Servlet project so developer can pack j2slib as war to deploy it. 3. Combine Java2Script Application and Java2Script JUnit codes.
1 parent 929ed62 commit e6bbf10

File tree

6 files changed

+580
-1340
lines changed

6 files changed

+580
-1340
lines changed

META-INF/MANIFEST.MF

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Require-Bundle: org.eclipse.ui,
2828
org.eclipse.ltk.ui.refactoring,
2929
org.eclipse.ui.console,
3030
net.sf.j2s.core,
31-
org.eclipse.core.filesystem;
32-
org.junit,
33-
org.eclipse.jdt.junit,
31+
org.eclipse.core.filesystem,
32+
org.junit,
33+
org.eclipse.jdt.junit,
3434
net.sf.j2s.ajax
3535
Eclipse-AutoStart: true

src/net/sf/j2s/ui/launching/J2SLaunchConfigurationDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void launch(ILaunchConfiguration configuration, String mode,
1616
ILaunch launch, IProgressMonitor monitor) throws CoreException {
1717
if (configuration != null) {
1818
try {
19-
J2SLaunchingUtil.launchingJ2SApp(configuration, mode);
19+
J2SLaunchingUtil.launchingJ2SApp(configuration, mode, "html");
2020
} catch (CoreException e) {
2121
e.printStackTrace();
2222
}

0 commit comments

Comments
 (0)