Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-01-11 19:54:25 +0000
committerAndrew Niefer2007-01-11 19:54:25 +0000
commit2558e5f0dbd1accc58ffbaf79bd97e334544e2a1 (patch)
treedfd4dac5226dde40215bf8a892c2f342d470ba2d /bundles/org.eclipse.equinox.launcher/src
parentfd85e6e4a2a1216de806db4f679a6697b7fef5ac (diff)
downloadrt.equinox.framework-2558e5f0dbd1accc58ffbaf79bd97e334544e2a1.tar.gz
rt.equinox.framework-2558e5f0dbd1accc58ffbaf79bd97e334544e2a1.tar.xz
rt.equinox.framework-2558e5f0dbd1accc58ffbaf79bd97e334544e2a1.zip
fix compile warnings bug 168485
Diffstat (limited to 'bundles/org.eclipse.equinox.launcher/src')
-rw-r--r--bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
index 35bd7b43d..07f19ede6 100644
--- a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
+++ b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
@@ -76,8 +76,8 @@ public class Main {
protected String ws = null;
protected String arch = null;
- private String name = null; // The name to brand the launcher
- private String launcher = null; // The full path to the launcher
+// private String name = null; // The name to brand the launcher
+// private String launcher = null; // The full path to the launcher
private String library = null;
private String vm = null;
@@ -115,8 +115,8 @@ public class Main {
private static final String CONFIGURATION = "-configuration"; //$NON-NLS-1$
private static final String NOSPLASH = "-nosplash"; //$NON-NLS-1$
private static final String SHOWSPLASH = "-showsplash"; //$NON-NLS-1$
- private static final String NAME = "-name"; //$NON-NLS-1$
- private static final String LAUNCHER = "-launcher"; //$NON-NLS-1$
+// private static final String NAME = "-name"; //$NON-NLS-1$
+// private static final String LAUNCHER = "-launcher"; //$NON-NLS-1$
private static final String LIBRARY = "-library"; //$NON-NLS-1$
private static final String NL = "-nl"; //$NON-NLS-1$
private static final String ENDSPLASH = "-endsplash"; //$NON-NLS-1$
@@ -1296,17 +1296,17 @@ public class Main {
found = true;
}
- // look for the name to use by the launcher
- if (args[i - 1].equalsIgnoreCase(NAME)) {
- name = arg;
- found = true;
- }
-
- // look for the launcher location
- if (args[i - 1].equalsIgnoreCase(LAUNCHER)) {
- launcher = arg;
- found = true;
- }
+// // look for the name to use by the launcher
+// if (args[i - 1].equalsIgnoreCase(NAME)) {
+// name = arg;
+// found = true;
+// }
+//
+// // look for the launcher location
+// if (args[i - 1].equalsIgnoreCase(LAUNCHER)) {
+// launcher = arg;
+// found = true;
+// }
if (args[i - 1].equalsIgnoreCase(LIBRARY)) {
library = arg;

Back to the top