Skip to content

Commit

Permalink
java.diagnostic.filter is broken on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
snjeza authored and rgrunber committed Oct 2, 2024
1 parent 76ad1ca commit 4ce5969
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import java.net.URISyntaxException;
import java.nio.file.FileSystem;
import java.nio.file.Files;
import java.nio.file.InvalidPathException;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Collections;
Expand Down Expand Up @@ -1869,8 +1870,13 @@ public static boolean isExcludedFile(List<String> patterns, String uriString) {
java.nio.file.Path[] path = new java.nio.file.Path[1];
try {
path[0] = Paths.get(uri.toURL().getPath());
} catch (MalformedURLException e) {
path[0] = Paths.get(uri);
} catch (MalformedURLException | InvalidPathException e) {
try {
path[0] = Paths.get(uri);
} catch (Exception e1) {
JavaLanguageServerPlugin.logException(e1);
return false;
}
}
FileSystem fileSystems = path[0].getFileSystem();
return !patterns.stream().filter(pattern -> fileSystems.getPathMatcher("glob:" + pattern).matches(path[0])).collect(Collectors.toList()).isEmpty();
Expand Down

0 comments on commit 4ce5969

Please sign in to comment.