Add missing @Override annotations

Change-Id: I8705a778d822118f417e88f6b7d2876473ab7913
Signed-off-by: Fred Bricon <fbricon@gmail.com>
diff --git a/org.eclipse.m2e.wtp.jpa/src/org/eclipse/m2e/wtp/jpa/AbstractPlatformIdentifier.java b/org.eclipse.m2e.wtp.jpa/src/org/eclipse/m2e/wtp/jpa/AbstractPlatformIdentifier.java
index 8126d27..b860d79 100644
--- a/org.eclipse.m2e.wtp.jpa/src/org/eclipse/m2e/wtp/jpa/AbstractPlatformIdentifier.java
+++ b/org.eclipse.m2e.wtp.jpa/src/org/eclipse/m2e/wtp/jpa/AbstractPlatformIdentifier.java
@@ -23,6 +23,7 @@
 public abstract class AbstractPlatformIdentifier implements IPlatformIdentifier {
 
 	
+	@Override
 	public String getPlatformId(XmlPersistenceUnit xmlPersistenceUnit) {
 		if (xmlPersistenceUnit == null) {
 			return null;
diff --git a/org.eclipse.m2e.wtp.jpa/src/org/eclipse/m2e/wtp/jpa/internal/configurators/MavenResourceLocator.java b/org.eclipse.m2e.wtp.jpa/src/org/eclipse/m2e/wtp/jpa/internal/configurators/MavenResourceLocator.java
index 6c478ab..d362423 100644
--- a/org.eclipse.m2e.wtp.jpa/src/org/eclipse/m2e/wtp/jpa/internal/configurators/MavenResourceLocator.java
+++ b/org.eclipse.m2e.wtp.jpa/src/org/eclipse/m2e/wtp/jpa/internal/configurators/MavenResourceLocator.java
@@ -205,6 +205,7 @@
 															new NullProgressMonitor());
 	}
 
+	@Override
 	public IPath getRuntimePath(IProject project, IPath resourcePath) {
 		IPath runtimePath = getDelegate(project).getRuntimePath(project, resourcePath);
 		return runtimePath;