Skip to content

Commit

Permalink
fixed wrong parameter
Browse files Browse the repository at this point in the history
Issue #564
  • Loading branch information
rsoika committed Jan 4, 2024
1 parent eaf7e84 commit bb0bec5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public ItemCollection execute(ItemCollection workitem, ItemCollection event)
String deleteItems = gdprConfig.getItemValueString("delete");
String anonymiseItems = gdprConfig.getItemValueString("anonymise");
String placeholder = gdprConfig.getItemValueString("placeholder");
boolean anonymiseReferences = gdprConfig.getItemValueBoolean("references");
String anonymiseReferences = gdprConfig.getItemValueString("references");

gdprAnonymiseService.deleteItems(workitem, deleteItems);
gdprAnonymiseService.anonimiseItems(workitem, anonymiseItems, placeholder);
Expand Down

0 comments on commit bb0bec5

Please sign in to comment.