Skip to content

Commit

Permalink
update the javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
marschall committed Sep 22, 2024
1 parent 9052be7 commit 6824e34
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,18 @@
*/
public final class MemoryURLStreamHandlerFactory implements URLStreamHandlerFactory {

/**
* Default constructor called by the JDK.
*/
public MemoryURLStreamHandlerFactory() {
super();
}

@Override
public URLStreamHandler createURLStreamHandler(String protocol) {
return MemoryFileSystemProvider.SCHEME.equals(protocol)
? new Handler()
: null;
? new Handler()
: null;
}

}

0 comments on commit 6824e34

Please sign in to comment.