Skip to content

Commit 6e33d87

Browse files
committed
fix IDEA inspections: remove redundant escape in regex
1 parent 83824dd commit 6e33d87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/novocode/junit/TestFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
public final class TestFilter extends Filter
1111
{
12-
private static final String DELIMITER = "\\,";
12+
private static final String DELIMITER = ",";
1313

1414
private final HashSet<String> ignored = new HashSet<>();
1515
private final String[] testPatterns;

0 commit comments

Comments
 (0)