Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-10-23 01:16:21 +0000
committerDarin Wright2006-10-23 01:16:21 +0000
commit023eb92600d981541813640f3fb5c37a65e4b9ba (patch)
treee4710f73f3be3c669eef2655272a86a1ae5b5104 /org.eclipse.debug.core
parent75948d94685326ca2181cde5ab3a263747ab2e87 (diff)
downloadeclipse.platform.debug-023eb92600d981541813640f3fb5c37a65e4b9ba.tar.gz
eclipse.platform.debug-023eb92600d981541813640f3fb5c37a65e4b9ba.tar.xz
eclipse.platform.debug-023eb92600d981541813640f3fb5c37a65e4b9ba.zip
Bug 161896 Warnings in N20061022-0010
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java14
1 files changed, 1 insertions, 13 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
index dbad668f5..27cfc47e3 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
@@ -550,25 +550,13 @@ public class LaunchManager extends PlatformObject implements ILaunchManager, IRe
* Keys are mode identifiers, values are <code>ILaunchMode</code>s.
*/
private Map fLaunchModes = null;
-
- /**
- * Registered launch options, or <code>null</code> if not initialized
- * Map is of the form <code>Map<id, option></code>
- * @since 3.3
- */
- private HashMap fLaunchOptions = null;
-
+
/**
* A map of LaunchDelegate objects stored by id of delegate, or launch config type
*/
private HashMap fLaunchDelegates = null;
/**
- * A map of duplicate delegates arranged by config type id
- */
- private HashMap fDuplicateDelegates = null;
-
- /**
* Collection of launches
*/
private List fLaunches= new ArrayList(10);

Back to the top