fix: undesired newlines between multiple arguments in res.writeln()
This commit is contained in:
parent
4d92cec456
commit
dd53c6f365
1 changed files with 3 additions and 1 deletions
|
@ -222,8 +222,10 @@ public class ResponseBean implements Serializable {
|
||||||
if (str == null) return;
|
if (str == null) return;
|
||||||
|
|
||||||
for (String s : str) {
|
for (String s : str) {
|
||||||
res.writeln(s + "");
|
res.write(s + "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
res.writeln();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue