Merge "WrappedFilterConfig: Fix 'unchecked or unsafe operations' warning"
This commit is contained in:
@@ -39,10 +39,9 @@ class WrappedFilterConfig implements FilterConfig {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
|
||||||
@Override
|
@Override
|
||||||
public Enumeration getInitParameterNames() {
|
public Enumeration<String> getInitParameterNames() {
|
||||||
return Collections.enumeration(Collections.emptyList());
|
return Collections.emptyEnumeration();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Reference in New Issue
Block a user