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:
Paolo G. Giarrusso 2012-12-16 23:11:41 +01:00 committed by Mark Harrah
parent 1d7e68be1b
commit 40bc141058
1 changed files with 1 additions and 0 deletions

View File

@ -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]; }