Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2015-10-15 20:17:32 +0000
committerMarc Khouzam2015-10-15 20:17:32 +0000
commit843ecb2adcadb2345059014b46bd2a3e75923429 (patch)
tree547c3616eb00817f1aeed0bb84c3b343e44b031f /dsf/org.eclipse.cdt.dsf
parent803bf0db80a7352841f0caa4e35ea7e7ecbbc2c6 (diff)
downloadorg.eclipse.cdt-843ecb2adcadb2345059014b46bd2a3e75923429.tar.gz
org.eclipse.cdt-843ecb2adcadb2345059014b46bd2a3e75923429.tar.xz
org.eclipse.cdt-843ecb2adcadb2345059014b46bd2a3e75923429.zip
Cosmetics
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
Diffstat (limited to 'dsf/org.eclipse.cdt.dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/DsfPlugin.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/DsfPlugin.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/DsfPlugin.java
index 88a153cea7d..b26f13a48de 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/DsfPlugin.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/DsfPlugin.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2009 Wind River Systems and others.
+ * Copyright (c) 2006, 2015 Wind River Systems 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
@@ -40,10 +40,6 @@ public class DsfPlugin extends Plugin {
fgPlugin = this;
}
- /*
- * (non-Javadoc)
- * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
- */
@Override
public void start(BundleContext context) throws Exception {
fgBundleContext = context;
@@ -51,10 +47,6 @@ public class DsfPlugin extends Plugin {
DEBUG = "true".equals(Platform.getDebugOption("org.eclipse.cdt.dsf/debug")); //$NON-NLS-1$//$NON-NLS-2$
}
- /*
- * (non-Javadoc)
- * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
- */
@Override
public void stop(BundleContext context) throws Exception {
fgBundleContext = null;
@@ -111,7 +103,4 @@ public class DsfPlugin extends Plugin {
traceBuilder.append(millis);
return traceBuilder.toString();
}
-
-
-
}

Back to the top