Bug 531930: [Code completion] exception for Java class lookup

  implementation for clearCached... can be empty

Change-Id: Ib6f4911630f16b310043981fd50739c8bf5c2b76
diff --git a/plugins/org.eclipse.ease.ui.completions.java/src/org/eclipse/ease/ui/completions/java/help/hovers/internal/VirtualProject.java b/plugins/org.eclipse.ease.ui.completions.java/src/org/eclipse/ease/ui/completions/java/help/hovers/internal/VirtualProject.java
index d1efc76..1f46712 100644
--- a/plugins/org.eclipse.ease.ui.completions.java/src/org/eclipse/ease/ui/completions/java/help/hovers/internal/VirtualProject.java
+++ b/plugins/org.eclipse.ease.ui.completions.java/src/org/eclipse/ease/ui/completions/java/help/hovers/internal/VirtualProject.java
@@ -41,10 +41,6 @@
 import org.eclipse.core.runtime.content.IContentTypeMatcher;
 import org.eclipse.core.runtime.jobs.ISchedulingRule;
 
-/**
- * @author christian
- *
- */
 public class VirtualProject implements IProject {
 
 	@Override
@@ -667,9 +663,8 @@
 		throw new RuntimeException("setDescription not implemented");
 	}
 
-	// Bug 517300: No @Override because this is a new method on IProject in Eclipse 4.7
-	// Note that Auto-cleanup will re-add the @Override
+	@Override
 	public void clearCachedDynamicReferences() {
-		throw new RuntimeException("clearCachedDynamicReferences not implemented");
+		// nothing to do
 	}
 }