Revert "Merge pull request #32071 from mnhock"

This reverts commit c3127249ac, reversing
changes made to 11c8b22c5a.

See gh-32071
This commit is contained in:
Stéphane Nicoll 2024-01-24 14:34:44 +01:00
parent a4fcef4a62
commit 4d7da0059e
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2024 the original author or authors.
* Copyright 2002-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -261,7 +261,7 @@ public class TagWriter {
public SafeWriter append(String value) throws JspException {
try {
getWriterToUse().write(value);
getWriterToUse().write(String.valueOf(value));
return this;
}
catch (IOException ex) {