Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hvarg committed Sep 30, 2021
1 parent 7101e79 commit 90d27d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ public Map<String, List<String>> queryExternalStore(String username, String doma
if (variables == null || variables.contentEquals("")) {
queryVars = "*";
} else {
String[] vars = variables.replaceAll("\s+", " ").split(" ");
String[] vars = variables.replaceAll("\\s+", " ").split(" ");
for (String v: vars) {
if (v.charAt(0) != '?')
return dataVarBindings;
Expand Down

0 comments on commit 90d27d5

Please sign in to comment.