fix: concat res.write() arguments with spaces
This commit is contained in:
parent
dd53c6f365
commit
540d0eb0fc
1 changed files with 2 additions and 2 deletions
|
@ -209,7 +209,7 @@ public class ResponseBean implements Serializable {
|
||||||
if (str == null) return;
|
if (str == null) return;
|
||||||
|
|
||||||
for (String s : str) {
|
for (String s : str) {
|
||||||
res.write(s + "");
|
res.write(s + " ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -222,7 +222,7 @@ public class ResponseBean implements Serializable {
|
||||||
if (str == null) return;
|
if (str == null) return;
|
||||||
|
|
||||||
for (String s : str) {
|
for (String s : str) {
|
||||||
res.write(s + "");
|
res.write(s + " ");
|
||||||
}
|
}
|
||||||
|
|
||||||
res.writeln();
|
res.writeln();
|
||||||
|
|
Loading…
Add table
Reference in a new issue