put ResolverAdapter.java in proper location

This commit is contained in:
Mark Harrah
2010-09-13 19:42:11 -04:00
parent 43d593e281
commit aea757ed18
+12
View File
@@ -0,0 +1,12 @@
package sbt;
import java.util.Map;
import org.apache.ivy.plugins.resolver.DependencyResolver;
// implements the methods with raw types
public abstract class ResolverAdapter implements DependencyResolver
{
public String[] listTokenValues(String token, Map otherTokenValues) { return new String[0]; }
public Map[] listTokenValues(String[] tokens, Map criteria) { return new Map[0]; }
}