Skip to main content
summaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorMikhail Khodjaiants2007-05-17 15:53:27 +0000
committerMikhail Khodjaiants2007-05-17 15:53:27 +0000
commite54c4973dd64b15e8ca98814fdff966a8eec94af (patch)
tree8021552142db91a67ac6015ea01f0edb101db141 /debug
parenta4beb8b6d0309b2dc41b06a76fcb60997907239c (diff)
downloadorg.eclipse.cdt-e54c4973dd64b15e8ca98814fdff966a8eec94af.tar.gz
org.eclipse.cdt-e54c4973dd64b15e8ca98814fdff966a8eec94af.tar.xz
org.eclipse.cdt-e54c4973dd64b15e8ca98814fdff966a8eec94af.zip
Warning cleanup.
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java
index 2eaa1e20280..dc61005fb0b 100644
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java
+++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java
@@ -68,8 +68,8 @@ public class CDebugUIPlugin extends AbstractUIPlugin {
*/
public static final String PLUGIN_ID = "org.eclipse.cdt.debug.ui"; //$NON-NLS-1$
- public static final String CDEBUGGER_PAGE_EXTENSION_POINT_ID = "CDebuggerPage";
- public static final String DEBUGGER_PAGE_ELEMENT = "debuggerPage";
+ public static final String CDEBUGGER_PAGE_EXTENSION_POINT_ID = "CDebuggerPage"; //$NON-NLS-1$
+ public static final String DEBUGGER_PAGE_ELEMENT = "debuggerPage"; //$NON-NLS-1$
//The shared instance.
private static CDebugUIPlugin plugin;
@@ -179,7 +179,7 @@ public class CDebugUIPlugin extends AbstractUIPlugin {
protected void initializeDebuggerPageMap() {
fDebuggerPageMap = new HashMap( 10 );
- IExtensionPoint extensionPoint = Platform.getExtensionRegistry().getExtensionPoint( PLUGIN_ID, CDEBUGGER_PAGE_EXTENSION_POINT_ID ); //$NON-NLS-1$
+ IExtensionPoint extensionPoint = Platform.getExtensionRegistry().getExtensionPoint( PLUGIN_ID, CDEBUGGER_PAGE_EXTENSION_POINT_ID );
IConfigurationElement[] infos = extensionPoint.getConfigurationElements();
for( int i = 0; i < infos.length; i++ ) {
IConfigurationElement info = infos[i];

Back to the top