mirror of
https://github.com/sbt/sbt.git
synced 2026-09-07 02:55:23 +02:00
put ResolverAdapter.java in proper location
This commit is contained in:
@@ -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]; }
|
||||
}
|
||||
Reference in New Issue
Block a user