mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Replace "if(" with "if ("
This commit is contained in:
+2
-2
@@ -97,8 +97,8 @@ public abstract class HtmlEscapingAwareTag extends RequestContextAwareTag {
|
||||
*/
|
||||
protected String htmlEscape(String content) {
|
||||
String out = content;
|
||||
if(isHtmlEscape()) {
|
||||
if(isResponseEncodedHtmlEscape()) {
|
||||
if (isHtmlEscape()) {
|
||||
if (isResponseEncodedHtmlEscape()) {
|
||||
out = HtmlUtils.htmlEscape(content, this.pageContext.getResponse().getCharacterEncoding());
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user