Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerImageProvider.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerImageProvider.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerImageProvider.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerImageProvider.java
index 9a309ba25..3d4c02eda 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerImageProvider.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/InstructionPointerImageProvider.java
@@ -22,9 +22,6 @@ import org.eclipse.ui.texteditor.IAnnotationImageProvider;
public class InstructionPointerImageProvider implements IAnnotationImageProvider {
- /* (non-Javadoc)
- * @see org.eclipse.ui.texteditor.IAnnotationImageProvider#getManagedImage(org.eclipse.jface.text.source.Annotation)
- */
@Override
public Image getManagedImage(Annotation annotation) {
if (annotation instanceof InstructionPointerAnnotation) {
@@ -35,17 +32,11 @@ public class InstructionPointerImageProvider implements IAnnotationImageProvider
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.texteditor.IAnnotationImageProvider#getImageDescriptorId(org.eclipse.jface.text.source.Annotation)
- */
@Override
public String getImageDescriptorId(Annotation annotation) {
return null;
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.texteditor.IAnnotationImageProvider#getImageDescriptor(java.lang.String)
- */
@Override
public ImageDescriptor getImageDescriptor(String imageDescritporId) {
return null;

Back to the top