fix: regression from foolishly replacing a nullstring with space
This commit is contained in:
parent
06eefa8e86
commit
5a958b2980
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue