Closed pwittchen closed 9 years ago
The following method:
<T> T get(String key, Class classOfT, T defaultValue);
requires null-check for key as follows:
key
checkNotNull(classOfT, "classOfT == null");
and appropriate Unit Test.
The following method:
requires null-check for
key
as follows:and appropriate Unit Test.