Author: dgolovin
Date: 2012-10-04 15:58:28 -0400 (Thu, 04 Oct 2012)
New Revision: 44311
Modified:
trunk/maven/tests/org.jboss.tools.maven.common.test/src/org/jboss/tools/maven/core/identification/FileIdentificationManagerTest.java
Log:
fix for compilation errors in maven.common.test plugin
Modified:
trunk/maven/tests/org.jboss.tools.maven.common.test/src/org/jboss/tools/maven/core/identification/FileIdentificationManagerTest.java
===================================================================
---
trunk/maven/tests/org.jboss.tools.maven.common.test/src/org/jboss/tools/maven/core/identification/FileIdentificationManagerTest.java 2012-10-04
19:00:25 UTC (rev 44310)
+++
trunk/maven/tests/org.jboss.tools.maven.common.test/src/org/jboss/tools/maven/core/identification/FileIdentificationManagerTest.java 2012-10-04
19:58:28 UTC (rev 44311)
@@ -27,6 +27,12 @@
public ArtifactKey identify(File file) throws CoreException {
return null;
}
+
+ @Override
+ public ArtifactKey identify(File file, IProgressMonitor monitor) throws CoreException
{
+ // TODO Auto-generated method stub
+ return null;
+ }
};
monitor = new NullProgressMonitor();
fileIdentificationManager = new
FileIdentificationManager(Collections.singleton(identifier1));
@@ -43,6 +49,12 @@
public ArtifactKey identify(File file) throws CoreException {
return new ArtifactKey("junit", "junit", "4.10",
null);
}
+
+ @Override
+ public ArtifactKey identify(File file, IProgressMonitor monitor) throws CoreException
{
+ // TODO Auto-generated method stub
+ return null;
+ }
}
);
assertNotNull(fileIdentificationManager.identify(junit, monitor));
Show replies by date