aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java
diff options
context:
space:
mode:
authorClaude Brisson <cbrisson@apache.org>2019-06-01 11:21:20 +0000
committerClaude Brisson <cbrisson@apache.org>2019-06-01 11:21:20 +0000
commitf1dae6f6d34a46fbf2ac570e11c989fca7328dd3 (patch)
treeb0a696f1beda65228d63649362f5186cf09c35d2 /velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeConstants.java
parent73e49c6ed96c2404ff29d98dedbee66e94b99eae (diff)
downloadapache-velocity-engine-f1dae6f6d34a46fbf2ac570e11c989fca7328dd3.tar.gz
[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
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";
/*
* ----------------------------------------------------------------------