See gh-32215
This commit is contained in:
Johnny Lim
2022-09-02 01:01:48 +09:00
committed by Stephane Nicoll
parent cfdceba687
commit 2273191c03
4 changed files with 6 additions and 6 deletions

View File

@@ -185,7 +185,7 @@ public class ApplicationRunner extends DefaultTask {
List<String> normalizedLines = new ArrayList<>();
for (String line : lines) {
Matcher matcher = pattern.matcher(line);
StringBuffer transformed = new StringBuffer();
StringBuilder transformed = new StringBuilder();
while (matcher.find()) {
matched = true;
matcher.appendReplacement(transformed, replacement);