Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
taoliult committed Jun 30, 2023
1 parent 768ed48 commit 574f82f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ boolean isRestrictedServiceAllowed(Service service) {
String cAlgorithm = constraint.algorithm;
String cAttribute = constraint.attributes;

if (!isAsterisk(cType) && !type.equalsIgnoreCase(cType)) {
if (!isAsterisk(cType) && !type.equals(cType)) {
// The constraint doesn't apply to the service type.
continue;
}
Expand Down

0 comments on commit 574f82f

Please sign in to comment.