mirror of https://github.com/sbt/sbt.git
12 lines
396 B
Java
12 lines
396 B
Java
|
|
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]; }
|
||
|
|
}
|