Skip to content

Commit

Permalink
ISSUES-603 Mask Method renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
nirmalchandra committed Jan 28, 2024
1 parent 5fadc27 commit 079647e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public static String getMaskedTokensReplaced(String aString) {
return aString;
}

public static String getMaskedTokensRemoved(String aString) {
public static String getMasksRemoved(String aString) {
String regex = "\\$\\{MASKED:([^\\}]*)\\}";
Matcher maskMatcher = Pattern.compile(regex).matcher(aString);
while(maskMatcher.find()) {
Expand Down

0 comments on commit 079647e

Please sign in to comment.