Skip to content
This repository was archived by the owner on Jun 26, 2022. It is now read-only.

Commit fdd2b00

Browse files
add missing exception string argument
1 parent af576a7 commit fdd2b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

query/TypeQLMatch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ private void filtersAreInScope() {
204204
if (!namedVariablesUnbound().contains(var))
205205
throw TypeQLException.of(VARIABLE_OUT_OF_SCOPE_MATCH.message(var));
206206
if (!var.isNamed()) throw TypeQLException.of(VARIABLE_NOT_NAMED.message(var));
207-
if (duplicates.contains(var)) throw TypeQLException.of(ILLEGAL_FILTER_VARIABLE_REPEATING);
207+
if (duplicates.contains(var)) throw TypeQLException.of(ILLEGAL_FILTER_VARIABLE_REPEATING.message(var));
208208
else duplicates.add(var);
209209
}
210210
}

0 commit comments

Comments
 (0)