mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
implement jar and file URL stream handlers
This commit is contained in:
@ -13,7 +13,9 @@ package java.net;
|
||||
import java.io.IOException;
|
||||
|
||||
public abstract class URLStreamHandler {
|
||||
protected void parseURL(URL url, String s, int start, int end) {
|
||||
protected void parseURL(URL url, String s, int start, int end)
|
||||
throws MalformedURLException
|
||||
{
|
||||
String protocol = s.substring(0, start - 1);
|
||||
s = s.substring(start, end);
|
||||
|
||||
|
Reference in New Issue
Block a user