-
Bug
-
Resolution: Fixed
-
P5
-
5.0
-
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;
}