Suppress deliberate raw types usage etc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1034830 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-11-13 18:07:02 +00:00
parent 5cc5694b0e
commit 35ca6531ef
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ import org.junit.Test;
* @author David M. Sledge
* @version $Id$
*/
@SuppressWarnings({ "unchecked", "unused" })
@SuppressWarnings({ "unchecked", "unused" , "rawtypes", "null"})
//raw types, where used, are used purposely
public class TypeUtilsTest<B> {
@ -674,7 +674,7 @@ class AAAClass extends AAClass<String> {
}
}
@SuppressWarnings("unchecked")
@SuppressWarnings("rawtypes")
//raw types, where used, are used purposely
class AClass extends AAClass<String>.BBClass<Number> {