-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P5
-
Affects Version/s: 5.0
-
Component/s: security-libs
-
beta
-
generic
-
solaris_9
investigate whether the null check is necessary:
---------------------------------------------
javax.security.auth.kerberos.ServicePermission
private static int getMask(String action) {
if (action == null) {
throw new NullPointerException("action can't be null");
}
...
if (action == null) {
return mask;
}
---------------------------------------------
javax.security.auth.kerberos.ServicePermission
private static int getMask(String action) {
if (action == null) {
throw new NullPointerException("action can't be null");
}
...
if (action == null) {
return mask;
}