mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-13 13:35:51 +00:00
Method in package private class does not need to be public
This commit is contained in:
parent
3d4a7e6716
commit
768f656c43
@ -30,7 +30,7 @@ final class Assertions {
|
||||
// can not be instantiated
|
||||
}
|
||||
|
||||
public static void notNull(final Object parameter, final String parameterName) {
|
||||
static void notNull(final Object parameter, final String parameterName) {
|
||||
if (parameter == null) {
|
||||
throw new IllegalArgumentException("Parameter '" + parameterName + "' must not be null!");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user