[BUG] Fix newline issues in remapped text files

This commit is contained in:
2023-11-04 21:59:55 +02:00
parent ff0b83c247
commit 2e9957d2ce
2 changed files with 4 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
version_base=1.0
version_patch=3
version_patch=4

View File

@@ -419,6 +419,9 @@ public class JarMergeAction {
line = line.replace(entry.getKey(), entry.getValue());
}
sb.append(line);
if (scanner.hasNext())
sb.append("\n");
}
scanner.close();