chg: cast each array element to string
This commit is contained in:
parent
74b927244e
commit
cd05af552e
1 changed files with 19 additions and 19 deletions
|
@ -207,7 +207,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 + "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -220,7 +220,7 @@ 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.writeln(s + "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -251,7 +251,7 @@ public class ResponseBean implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
for (String message : messages) {
|
for (String message : messages) {
|
||||||
res.debug(message);
|
res.debug(message + " ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue