Skip to content

Commit

Permalink
Fix(inspect-code): Simplify system path separator
Browse files Browse the repository at this point in the history
  • Loading branch information
rkubis committed Nov 22, 2024
1 parent b5bbe8e commit f143f50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class Exec {
private Map<String, String> env;
private final boolean appendLineSeparator;
private Subscriber<String> stdErrProcessor;
private static final Pattern PATH_SPLITTER = Pattern.compile(System.getProperty("path.separator"));
private static final Pattern PATH_SPLITTER = Pattern.compile(File.pathSeparator);
protected static final Object LOCK = new Object();

public Exec() {
Expand Down

0 comments on commit f143f50

Please sign in to comment.