Revert "Merge pull request #32071 from mnhock"
This reverts commitc3127249ac
, reversing changes made to11c8b22c5a
. See gh-32071
This commit is contained in:
parent
a4fcef4a62
commit
4d7da0059e
|
@ -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");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with 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 {
|
public SafeWriter append(String value) throws JspException {
|
||||||
try {
|
try {
|
||||||
getWriterToUse().write(value);
|
getWriterToUse().write(String.valueOf(value));
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
catch (IOException ex) {
|
catch (IOException ex) {
|
||||||
|
|
Loading…
Reference in New Issue