Skip to content

Commit

Permalink
char match combinators
Browse files Browse the repository at this point in the history
  • Loading branch information
jhy committed Jan 19, 2023
1 parent 9bb07d2 commit 9127dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jsoup/select/QueryParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Parses a CSS selector into an Evaluator tree.
*/
public class QueryParser {
private final static String[] combinators = {",", ">", "+", "~", " "};
private final static char[] combinators = {',', '>', '+', '~', ' '};
private static final String[] AttributeEvals = new String[]{"=", "!=", "^=", "$=", "*=", "~="};

private final TokenQueue tq;
Expand Down

0 comments on commit 9127dba

Please sign in to comment.