You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2017/08/05 14:26:57 UTC

[37/50] incubator-freemarker git commit: (Bit of jj code formatting)

(Bit of jj code formatting)


Project: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/commit/77e877c7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/tree/77e877c7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/diff/77e877c7

Branch: refs/heads/2.3
Commit: 77e877c7657c404d78d2f968273fd05160b9df89
Parents: 3b03406
Author: ddekany <dd...@apache.org>
Authored: Thu Jul 27 18:51:28 2017 +0200
Committer: ddekany <dd...@apache.org>
Committed: Thu Jul 27 18:51:28 2017 +0200

----------------------------------------------------------------------
 src/main/javacc/FTL.jj | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/77e877c7/src/main/javacc/FTL.jj
----------------------------------------------------------------------
diff --git a/src/main/javacc/FTL.jj b/src/main/javacc/FTL.jj
index 6bd358e..b011c41 100644
--- a/src/main/javacc/FTL.jj
+++ b/src/main/javacc/FTL.jj
@@ -3360,12 +3360,13 @@ TemplateElement UnifiedMacroTransform() :
         positionalArgs = PositionalArgs()
     )
     [
-        <SEMICOLON>{bodyParameters = new ArrayList(4); }
+        <SEMICOLON>
+        { bodyParameters = new ArrayList(4); }
         [
             [<TERMINATING_WHITESPACE>] t = <ID> { bodyParameters.add(t.image); }
             (
                 [<TERMINATING_WHITESPACE>] <COMMA>
-                [<TERMINATING_WHITESPACE>] t = <ID>{bodyParameters.add(t.image); }
+                [<TERMINATING_WHITESPACE>] t = <ID> {bodyParameters.add(t.image); }
             )*
         ]
     ]