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:
parent
102d3d3586
commit
60deb1906a
11 changed files with 27 additions and 27 deletions
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue