diff options
author | acolyer <acolyer> | 2004-01-23 10:42:24 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-01-23 10:42:24 +0000 |
commit | 0db40aec209afb7afb8d00ece28b3a8ac99bceae (patch) | |
tree | 943a4838ec03dbf85e300b739dfcc74df614e223 /build/src/$installer$ | |
parent | 24be3226200231852363a1e37ea21b48fb770ad8 (diff) | |
download | aspectj-0db40aec209afb7afb8d00ece28b3a8ac99bceae.tar.gz aspectj-0db40aec209afb7afb8d00ece28b3a8ac99bceae.zip |
spring cleaning in advance of 1.2 enhancements:
removed unused imports, local variables, and private methods
(still there, just commented out).
Diffstat (limited to 'build/src/$installer$')
-rw-r--r-- | build/src/$installer$/org/aspectj/Main.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/src/$installer$/org/aspectj/Main.java b/build/src/$installer$/org/aspectj/Main.java index 49ebafc51..d413340d0 100644 --- a/build/src/$installer$/org/aspectj/Main.java +++ b/build/src/$installer$/org/aspectj/Main.java @@ -177,7 +177,7 @@ public class Main { throw new Exception("invalid javaPath: " + javaPath); } // directly set context and run - installer.getInstallPane().setContext(installerContext); + WizardPane.setContext(installerContext); installer.run(); } } catch (Exception e) { @@ -518,7 +518,7 @@ abstract class Installer { } public void moveToPane(WizardPane pane) { - pane.setContext(this.context); + WizardPane.setContext(this.context); Dimension size = frame.getContentPane().getSize(); @@ -1786,11 +1786,11 @@ class JarUnpacker { URL url = getClass().getResource(jarName); InputStream stream = url.openStream(); ZipInputStream zis = new ZipInputStream(stream); - int i = 0; +// int i = 0; ZipEntry entry; while ((entry = zis.getNextEntry()) != null) { - final String name = entry.getName(); +// final String name = entry.getName(); writeEntry(zis, entry, outputDir); // } |