Skip to content

Commit 17b1885

Browse files
authored
Fix variable rename (#1944)
1 parent 9b4b6f9 commit 17b1885

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

activemq-web/src/main/java/org/apache/activemq/web/util/ViewUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class ViewUtils {
4242
Map<String,String> mappings = new LinkedHashMap<>();
4343
mappings.put(AMP, XML_ESCAPED_AMP);
4444
mappings.put(LT, XML_ESCAPED_LT);
45-
mappings.put(GT, XMl_ESCAPED_GT);
45+
mappings.put(GT, XML_ESCAPED_GT);
4646
mappings.put(QUOTE, XML_ESCAPED_QUOTE);
4747
mappings.put(APOS, XML_ESCAPED_APOS);
4848

0 commit comments

Comments
 (0)