Skip to content

Commit

Permalink
Fix copy/paste error resulting in bad build
Browse files Browse the repository at this point in the history
  • Loading branch information
npsp-reedestockton committed Nov 15, 2023
1 parent 1a05e57 commit 2245fbf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions force-app/main/default/classes/HH_CampaignDedupeBTN_CTRL.cls
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,7 @@ public without sharing class HH_CampaignDedupeBTN_CTRL {
}

private static void validateAccessPermissions() {
if (!(UTIL_Permissions.canUpdate('CampaignMember', 'Status', false)) &&
() {
if (!UTIL_Permissions.canUpdate('CampaignMember', 'Status', false)) {
throw new UTIL_Permissions.InsufficientPermissionException(System.Label.commonAccessErrorMessage);
}

Expand Down

0 comments on commit 2245fbf

Please sign in to comment.