Skip to content

Commit

Permalink
Fix rename conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
TaBo2410 committed Feb 14, 2024
1 parent e53eb04 commit 66228ea
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ private String getPreConditionsString(Map<String, OldReplacement> oldReplacement

String result = String.join(" & ", preConditions);
result = replaceThisWithSelf(result);
result = renameCondition(result);

return replaceOldKeyword(result, oldReplacements);
}
Expand All @@ -378,6 +379,7 @@ private String getPostConditionsString(Map<String, OldReplacement> oldReplacemen

String result = String.join(" & ", postConditions);
result = replaceThisWithSelf(result);
result = renameCondition(result);

return replaceOldKeyword(result, oldReplacements);
}
Expand Down

0 comments on commit 66228ea

Please sign in to comment.