Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/text/makefile/MakefileAnnotationHover.java')
-rw-r--r--build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/text/makefile/MakefileAnnotationHover.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/text/makefile/MakefileAnnotationHover.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/text/makefile/MakefileAnnotationHover.java
index 1e632ff564e..b1948f75c84 100644
--- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/text/makefile/MakefileAnnotationHover.java
+++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/text/makefile/MakefileAnnotationHover.java
@@ -23,14 +23,14 @@ import org.eclipse.ui.IEditorPart;
/**
* MakefileAnnotationHover
- *
+ *
*/
public class MakefileAnnotationHover implements IAnnotationHover {
private IEditorPart fEditor;
-
+
/**
- *
+ *
*/
public MakefileAnnotationHover(IEditorPart editor) {
fEditor = editor;
@@ -38,10 +38,11 @@ public class MakefileAnnotationHover implements IAnnotationHover {
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.jface.text.source.IAnnotationHover#getHoverInfo(org.eclipse.jface.text.source.ISourceViewer,
* int)
*/
+ @Override
public String getHoverInfo(ISourceViewer sourceViewer, int lineNumber) {
IDocument document = sourceViewer.getDocument();
try {

Back to the top