Skip to content

Commit

Permalink
Changing wrong characters for WILDCARD_CHAR
Browse files Browse the repository at this point in the history
  • Loading branch information
afoucret authored Oct 25, 2024
1 parent ee2f7f8 commit 3af33b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public final class ParserUtils {
private static final String UNQUOTED_LITERAL_TERM_DELIMITER = " ";
private static final char ESCAPE_CHAR = '\\';
private static final char QUOTE_CHAR = '"';
private static final char WILDCARD_CHAR = '"';
private static final char WILDCARD_CHAR = '*';

private ParserUtils() {
throw new UnsupportedOperationException("No need to instantiate this class");
Expand Down

0 comments on commit 3af33b3

Please sign in to comment.