aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java
diff options
context:
space:
mode:
Diffstat (limited to 'velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java')
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java8
1 files changed, 4 insertions, 4 deletions
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";
/*
* ----------------------------------------------------------------------