aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src
diff options
context:
space:
mode:
authorClaude Brisson <cbrisson@apache.org>2016-11-07 23:05:52 +0000
committerClaude Brisson <cbrisson@apache.org>2016-11-07 23:05:52 +0000
commitf22642b8d487c196467d57c6f7bd708aeebc9bcc (patch)
tree391e469cfd742e053020bcc473633421fc9387cc /velocity-engine-core/src
parent8086b126dfff064642b7ec346b40b71cc4807ac2 (diff)
downloadapache-velocity-engine-f22642b8d487c196467d57c6f7bd708aeebc9bcc.tar.gz
[engine] Fix another bug in parser (newline between array or map elements)
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1768608 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'velocity-engine-core/src')
-rw-r--r--velocity-engine-core/src/main/parser/Parser.jjt2
1 files changed, 1 insertions, 1 deletions
diff --git a/velocity-engine-core/src/main/parser/Parser.jjt b/velocity-engine-core/src/main/parser/Parser.jjt
index b31c226d..89398848 100644
--- a/velocity-engine-core/src/main/parser/Parser.jjt
+++ b/velocity-engine-core/src/main/parser/Parser.jjt
@@ -1801,7 +1801,7 @@ void Parameter() #void: {}
| Reference()
| FloatingPointLiteral()
)
- [ <WHITESPACE>]
+ (<WHITESPACE>|<NEWLINE>)*
}
/**