Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2018-11-20 22:14:08 +0000
committerJonah Graham2018-11-22 22:00:29 +0000
commitaa1040a21ab27e9dd0c666e12022ec3dcb569d84 (patch)
treeaaddf487bc15bbc277fd44c00d72fdf229360db1 /codan/org.eclipse.cdt.codan.ui.cfgview
parenteeb3006e271eac4f5b319f2ca8007226efaadb58 (diff)
downloadorg.eclipse.cdt-aa1040a21ab27e9dd0c666e12022ec3dcb569d84.tar.gz
org.eclipse.cdt-aa1040a21ab27e9dd0c666e12022ec3dcb569d84.tar.xz
org.eclipse.cdt-aa1040a21ab27e9dd0c666e12022ec3dcb569d84.zip
Bug 540373: Remove '(non-Javadoc)' comments
These were inserted in the past automatically by Eclipse but newer tooling makes them redundant. These were removed by doing a global find/replace on *.java files using the following regular expression: \t/\*\n\t \* \(non-Javadoc\)[^/]*/\n Change-Id: I59d3248020f10934fde1dda5b5a31e20bb188e19
Diffstat (limited to 'codan/org.eclipse.cdt.codan.ui.cfgview')
-rw-r--r--codan/org.eclipse.cdt.codan.ui.cfgview/src/org/eclipse/cdt/codan/ui/cfgview/ControlFlowGraphPlugin.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/codan/org.eclipse.cdt.codan.ui.cfgview/src/org/eclipse/cdt/codan/ui/cfgview/ControlFlowGraphPlugin.java b/codan/org.eclipse.cdt.codan.ui.cfgview/src/org/eclipse/cdt/codan/ui/cfgview/ControlFlowGraphPlugin.java
index 0f6b87aaf9e..e451bc9ac8c 100644
--- a/codan/org.eclipse.cdt.codan.ui.cfgview/src/org/eclipse/cdt/codan/ui/cfgview/ControlFlowGraphPlugin.java
+++ b/codan/org.eclipse.cdt.codan.ui.cfgview/src/org/eclipse/cdt/codan/ui/cfgview/ControlFlowGraphPlugin.java
@@ -34,26 +34,12 @@ public class ControlFlowGraphPlugin extends AbstractUIPlugin {
public ControlFlowGraphPlugin() {
}
- /*
- * (non-Javadoc)
- *
- * @see
- * org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext
- * )
- */
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
- /*
- * (non-Javadoc)
- *
- * @see
- * org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext
- * )
- */
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;

Back to the top