Merge pull request #32071 from mnhock
* pr/32071: Upgrade copyright year of changed file Remove unnecessary conversion to 'String' Closes gh-32071
This commit is contained in:
commit
c3127249ac
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
* Copyright 2002-2024 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(String.valueOf(value));
|
||||
getWriterToUse().write(value);
|
||||
return this;
|
||||
}
|
||||
catch (IOException ex) {
|
||||
|
|
Loading…
Reference in New Issue