We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7884f76 commit ddf9f72Copy full SHA for ddf9f72
key.core/src/main/java/de/uka/ilkd/key/nparser/builder/IncludeFinder.java
@@ -60,7 +60,9 @@ private void addInclude(String filename) throws MalformedURLException {
60
// whatsoever
61
filename = filename.replace('\\', File.separatorChar); // Special handling for Linux
62
var path = base.resolve(filename).normalize();
63
- var uri = URI.create(path.toString());
+ String pathString = path.toString().replace(File.separatorChar, '/'); // URIs on Windows
64
+ // needs slash
65
+ var uri = URI.create(pathString);
66
if (uri.getScheme() == null) {
67
uri = URI.create("file://" + path);
68
}
0 commit comments