Remove unnecessary conversion to 'String'

See gh-32071
This commit is contained in:
mnhock
2024-01-20 13:13:54 +01:00
committed by Stéphane Nicoll
parent 11c8b22c5a
commit d9e86dd68c

View File

@@ -261,7 +261,7 @@ public class TagWriter {
public SafeWriter append(String value) throws JspException {
try {
getWriterToUse().write(String.valueOf(value));
getWriterToUse().write(value);
return this;
}
catch (IOException ex) {