Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/CExtensionInfo.java')
-rw-r--r--core/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/CExtensionInfo.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/CExtensionInfo.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/CExtensionInfo.java
deleted file mode 100644
index 7d9e146bb91..00000000000
--- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/CExtensionInfo.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2002,2003 QNX Software Systems Ltd. and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * QNX Software Systems - Initial API and implementation
-***********************************************************************/
-package org.eclipse.cdt.internal.core;
-
-import java.util.HashMap;
-
-public class CExtensionInfo {
-
- protected HashMap attribMap = new HashMap(4);
-
- protected HashMap getAttributes() {
- return attribMap;
- }
-
- public void setAttribute(String key, String value) {
- if (value == null) {
- attribMap.remove(key);
- } else {
- attribMap.put(key, value);
- }
- }
-
- public String getAttribute(String key) {
- return (String) attribMap.get(key);
- }
-
-}

Back to the top