From f1dae6f6d34a46fbf2ac570e11c989fca7328dd3 Mon Sep 17 00:00:00 2001 From: Claude Brisson Date: Sat, 1 Jun 2019 11:21:20 +0000 Subject: [engine][VELOCITY-917] Fix character names git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/branches/parser_experiments@1860476 13f79535-47bb-0310-9956-ffa450edef68 --- .../main/java/org/apache/velocity/runtime/RuntimeConstants.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java') diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java index 545e8f08..b68631b9 100644 --- a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java +++ b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java @@ -392,25 +392,25 @@ public interface RuntimeConstants extends DeprecatedRuntimeConstants * Set the character (onlysingle byte UTF-8 supported at present) to use instead of '$' for references. * @since 2.2 */ - String PARSER_DOLLAR = "parser.character.dollar"; + String PARSER_CHAR_DOLLAR = "parser.character.dollar"; /** * Set the character (onlysingle byte UTF-8 supported at present) to use instead of '#' for directives, macros and comments. * @since 2.2 */ - String PARSER_HASH = "parser.character.hash"; + String PARSER_CHAR_HASH = "parser.character.hash"; /** * Set the character (onlysingle byte UTF-8 supported at present) to use instead of '@' for '#@' block macros. * @since 2.2 */ - String PARSER_AROBASE = "parser.character.arobase"; + String PARSER_CHAR_AT = "parser.character.at"; /** * Set the character (onlysingle byte UTF-8 supported at present) to use instead of '*' for '#* *#' block comments. * @since 2.2 */ - String PARSER_STAR = "parser.character.star"; + String PARSER_CHAR_ASTERISK = "parser.character.asterisk"; /* * ---------------------------------------------------------------------- -- cgit v1.2.3