Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help/src/org/eclipse/help/internal/context/PluginsContexts.java')
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/context/PluginsContexts.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/org.eclipse.help/src/org/eclipse/help/internal/context/PluginsContexts.java b/org.eclipse.help/src/org/eclipse/help/internal/context/PluginsContexts.java
deleted file mode 100644
index bf1e981c8..000000000
--- a/org.eclipse.help/src/org/eclipse/help/internal/context/PluginsContexts.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.help.internal.context;
-import java.util.HashMap;
-import java.util.Map;
-/**
- * Holds mapping of short plugin Id to PluginContext
- */
-class PluginsContexts {
- private Map map = new HashMap();
- public void put(String pluginId, PluginContexts contexts) {
- map.put(pluginId, contexts);
- }
- public PluginContexts get(String pluginId) {
- return (PluginContexts) map.get(pluginId);
- }
- public void remove(String pluginId) {
- map.remove(pluginId);
- }
-}

Back to the top