Remove unnecessary conversion to 'String'
See gh-32071
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user