2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-26 08:37:11 -07:00

Replaced all append("x") with append('x')

This commit is contained in:
Erik C. Thauvin 2023-09-15 06:24:12 -07:00
parent 102d3d3586
commit 60deb1906a
11 changed files with 27 additions and 27 deletions

View file

@ -161,7 +161,7 @@ public class TestJarOperation {
while (e.hasMoreElements()) {
var jar_entry = e.nextElement();
content.append(jar_entry.getName());
content.append("\n");
content.append('\n');
}
}
@ -203,7 +203,7 @@ public class TestJarOperation {
while (e.hasMoreElements()) {
var jar_entry = e.nextElement();
content.append(jar_entry.getName());
content.append("\n");
content.append('\n');
}
}

View file

@ -138,7 +138,7 @@ public class TestWarOperation {
while (e.hasMoreElements()) {
var jar_entry = e.nextElement();
content.append(jar_entry.getName());
content.append("\n");
content.append('\n');
}
}