*** empty log message ***
diff --git a/org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/java/JavaCompletionProcessor.java b/org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/java/JavaCompletionProcessor.java index 8b9d5eb..f9dcd03 100644 --- a/org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/java/JavaCompletionProcessor.java +++ b/org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/java/JavaCompletionProcessor.java
@@ -26,7 +26,7 @@ * Simple content assist tip closer. The tip is valid in a range * of 5 characters around its popup location. */ - protected static class Validator implements IContextInformationValidator, IContextInformationPresenter { + protected static class Validator implements IContextInformationValidator { protected int fInstallOffset; @@ -43,13 +43,6 @@ public void install(IContextInformation info, ITextViewer viewer, int offset) { fInstallOffset= offset; } - - /* - * @see org.eclipse.jface.text.contentassist.IContextInformationPresenter#updatePresentation(int, TextPresentation) - */ - public boolean updatePresentation(int documentPosition, TextPresentation presentation) { - return false; - } }; protected final static String[] fgProposals=