Skip to content

Commit 5d3564b

Browse files
Address review comments 2
1 parent e2e14f7 commit 5d3564b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

closed/src/java.base/share/classes/openj9/internal/security/RestrictedSecurity.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ boolean isRestrictedServiceAllowed(Service service, boolean checkUse) {
856856

857857
// See if accepted uses have been specified and apply
858858
// them to the call stack.
859-
if (checkUse && !isNullOrBlank(cAcceptedUses)) {
859+
if (checkUse && (cAcceptedUses != null)) {
860860
String[] optionAndValue = cAcceptedUses.split(":");
861861
String option = optionAndValue[0];
862862
String value = optionAndValue[1];
@@ -895,6 +895,7 @@ boolean isRestrictedServiceAllowed(Service service, boolean checkUse) {
895895
break;
896896
default:
897897
printStackTraceAndExit("Incorrect option to match in constraint: " + constraint);
898+
break;
898899
}
899900

900901
if (found) {

0 commit comments

Comments
 (0)