Skip to content

Commit 724c88d

Browse files
committed
Remove unnecessary generics
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1518974 13f79535-47bb-0310-9956-ffa450edef68
1 parent 6c44286 commit 724c88d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/Assertions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private Assertions() {
2828
// can not be instantiated
2929
}
3030

31-
public static <T> void notNull(T parameter, String parameterName) {
31+
public static void notNull(Object parameter, String parameterName) {
3232
if (parameter == null) {
3333
throw new IllegalArgumentException("Parameter '" + parameterName + "' must not be null!");
3434
}

0 commit comments

Comments
 (0)