Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2015-07-17 12:11:42 +0000
committerAlexander Kurtakov2015-07-17 12:59:12 +0000
commite56091b8b23b7239f8ee17813d76a549e13f7a9e (patch)
tree3bf5be46b0246a189854d9a2e91001cc4543048c /systemtap/org.eclipse.linuxtools.systemtap.ui.ide
parent738bd07a99ea22b86fb5450fc8e615c4c977a847 (diff)
downloadorg.eclipse.linuxtools-e56091b8b23b7239f8ee17813d76a549e13f7a9e.tar.gz
org.eclipse.linuxtools-e56091b8b23b7239f8ee17813d76a549e13f7a9e.tar.xz
org.eclipse.linuxtools-e56091b8b23b7239f8ee17813d76a549e13f7a9e.zip
Remove useless non-javadoc comments.
Change-Id: I3cdd55b0ef36b446a95c869f591552609bb21655 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/52155 Tested-by: Hudson CI
Diffstat (limited to 'systemtap/org.eclipse.linuxtools.systemtap.ui.ide')
-rw-r--r--systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPConfiguration.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPConfiguration.java b/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPConfiguration.java
index afef2384b7..8aa8237007 100644
--- a/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPConfiguration.java
+++ b/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPConfiguration.java
@@ -44,9 +44,6 @@ public class STPConfiguration extends SourceViewerConfiguration {
this.processor = new STPCompletionProcessor();
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.text.source.SourceViewerConfiguration#getConfiguredContentTypes(org.eclipse.jface.text.source.ISourceViewer)
- */
@Override
public String[] getConfiguredContentTypes(ISourceViewer sourceViewer) {
return new String[] {
@@ -55,9 +52,6 @@ public class STPConfiguration extends SourceViewerConfiguration {
STPPartitionScanner.STP_CONDITIONAL};
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.text.source.SourceViewerConfiguration#getContentAssistant(org.eclipse.jface.text.source.ISourceViewer)
- */
@Override
public IContentAssistant getContentAssistant(ISourceViewer sourceViewer) {
ContentAssistant assistant = new ContentAssistant();
@@ -90,11 +84,6 @@ public class STPConfiguration extends SourceViewerConfiguration {
return scanner;
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.text.source.SourceViewerConfiguration#getReconciler(org.eclipse.jface.text.source.ISourceViewer)
- *
- * Return the reconciler built on the custom Systemtap reconciling strategy that enables code folding for this editor.
- */
@Override
public IReconciler getReconciler(ISourceViewer sourceViewer)
{

Back to the top