Replace "if(" with "if ("
This commit is contained in:
@@ -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