fix: undesired newlines between multiple arguments in res.writeln()

This commit is contained in:
Tobi Schäfer 2020-03-21 19:23:18 +01:00
parent 4d92cec456
commit dd53c6f365

View file

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