Skip to content

Commit 8eba4a3

Browse files
committed
Whitespace
1 parent c414b5e commit 8eba4a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/edu/stanford/nlp/trees/tregex/TregexParser.jj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ DescriptionPattern Description(Relation r, boolean negateDesc, boolean cat) : {
156156
// this is how we match tokens
157157
// the return value of tokens is a Token object
158158
( ( ( desc = <IDENTIFIER> | desc = <REGEX> | desc = <BLANK> | desc = <ROOTNODE> )
159-
( ( "#" groupNum = <NUMBER> "%" groupVar = <IDENTIFIER> ) {
160-
varGroups.add(new Pair<Integer,String>(Integer.parseInt(groupNum.image),groupVar.image));
161-
} )*
159+
( ( "#" groupNum = <NUMBER> "%" groupVar = <IDENTIFIER> ) {
160+
varGroups.add(new Pair<Integer,String>(Integer.parseInt(groupNum.image),groupVar.image));
161+
} )*
162162
( ( "=" name = <IDENTIFIER> )
163163
{ if (knownVariables.contains(name.image)) {
164164
throw new ParseException("Variable " + name.image + " has been declared twice, which makes no sense");

0 commit comments

Comments
 (0)