Remove unnecessary generics

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1518974 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-08-30 14:10:49 +00:00
parent 6c44286b6d
commit 724c88dbec
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ final class Assertions {
// can not be instantiated
}
public static <T> void notNull(T parameter, String parameterName) {
public static void notNull(Object parameter, String parameterName) {
if (parameter == null) {
throw new IllegalArgumentException("Parameter '" + parameterName + "' must not be null!");
}