fix: regression from foolishly replacing a nullstring with space

This commit is contained in:
Tobi Schäfer 2020-03-21 20:41:28 +01:00
parent 06eefa8e86
commit 5a958b2980

View file

@ -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();