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 889c535 commit 5a574f9Copy full SHA for 5a574f9
java-compiler-testing/src/main/java/io/github/ascopes/jct/workspaces/impl/MemoryFileSystemProvider.java
@@ -25,6 +25,7 @@
25
import java.nio.file.FileSystem;
26
import org.apiguardian.api.API;
27
import org.apiguardian.api.API.Status;
28
+import org.jspecify.annotations.Nullable;
29
30
/**
31
* RAM file system provider that uses {@code memoryfilesystem} as the underlying file system
@@ -89,6 +90,7 @@ public MemoryFileSystemUrlHandlerProvider() {
89
90
factory = new MemoryURLStreamHandlerFactory();
91
}
92
93
+ @Nullable
94
@Override
95
public URLStreamHandler createURLStreamHandler(String protocol) {
96
// This check can be removed once https://github.com/marschall/memoryfilesystem/pull/144 is
0 commit comments