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:
parent
5cc5694b0e
commit
35ca6531ef
|
@ -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> {
|
||||
|
||||
|
|
Loading…
Reference in New Issue