fix: concat res.write() arguments with spaces

This commit is contained in:
Tobi Schäfer 2020-03-21 20:05:12 +01:00
parent dd53c6f365
commit 540d0eb0fc

View file

@ -209,7 +209,7 @@ public class ResponseBean implements Serializable {
if (str == null) return;
for (String s : str) {
res.write(s + "");
res.write(s + " ");
}
}
@ -222,7 +222,7 @@ public class ResponseBean implements Serializable {
if (str == null) return;
for (String s : str) {
res.write(s + "");
res.write(s + " ");
}
res.writeln();