mirror of https://github.com/sbt/sbt.git
Silence boring Eclipse warnings: @SuppressWarnings("rawtypes")
Add @SuppressWarnings("rawtypes") to ResolverAdapter, since it has a comment
making pretty clear that using raw types is intended.
This commit is contained in:
parent
1d7e68be1b
commit
40bc141058
|
|
@ -4,6 +4,7 @@ package sbt;
|
|||
import org.apache.ivy.plugins.resolver.DependencyResolver;
|
||||
|
||||
// implements the methods with raw types
|
||||
@SuppressWarnings("rawtypes")
|
||||
public abstract class ResolverAdapter implements DependencyResolver
|
||||
{
|
||||
public String[] listTokenValues(String token, Map otherTokenValues) { return new String[0]; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue