Skip to content

Commit

Permalink
Remove two unused patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Sep 1, 2023
1 parent 8fe5ec2 commit 3901c17
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions worldedit-core/src/main/java/com/sk89q/util/StringUtil.java
Expand Up @@ -325,9 +325,6 @@ public static List<String> parseListInQuotes(String[] input, char delimiter, cha
return parseListInQuotes(input, delimiter, quoteOpen, quoteClose, false);
}

public static Pattern BLOCK_QUOTE_OPEN_PATTERN = Pattern.compile("[\\[{]");
public static Pattern BLOCK_QUOTE_CLOSE_PATTERN = Pattern.compile("[]}]");

public static List<String> parseListInQuotes(String[] input, char delimiter, char quoteOpen, char quoteClose, boolean appendLeftover) {
List<String> parsableBlocks = new ArrayList<>();
StringBuilder buffer = new StringBuilder();
Expand Down

0 comments on commit 3901c17

Please sign in to comment.