Skip to content

Commit

Permalink
Added call to isDuplicate method in another place
Browse files Browse the repository at this point in the history
  • Loading branch information
wwillard7800 committed Jan 11, 2022
1 parent 09311bc commit 0636390
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -124,7 +124,7 @@ public void set(String key, String value, ContextExpression contexts, Labels lab
if (globalParam) {
// if it is global param remove duplicate non-global parameters
ChangeLogParameter param = findParameter(key, null);
if (param != null && ! param.isGlobal()) {
if (param != null && isDuplicate(param) && ! param.isGlobal()) {
changeLogParameters.remove(param);
}
// okay add it
Expand Down

0 comments on commit 0636390

Please sign in to comment.