Skip to content

Commit

Permalink
Fix regex in provider format check
Browse files Browse the repository at this point in the history
  • Loading branch information
KostasTsiounis committed Jan 20, 2025
1 parent d37b366 commit dac2870
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1805,7 +1805,7 @@ private static void checkProviderFormat(String providerInfo, boolean update) {
+ "(\\[" // constraints [optional]
+ "\\s*"
+ "([+-])?" // action [optional]
+ "\\{.+\\}" // constraint definition
+ "\\{.+?\\}" // constraint definition
+ "\\])?"
+ "\\s*"
+ "$");
Expand Down

0 comments on commit dac2870

Please sign in to comment.