From df1f11433357c40c4ccbbcea5fa119a441f14ca6 Mon Sep 17 00:00:00 2001 From: green Date: Thu, 6 Sep 2001 22:32:54 +0000 Subject: * include/jvm.h: Declare _Jv_RegisterResource. * gnu/gcj/Core.java, gnu/gcj/natCore.cc, gnu/gcj/protocol/core/Connection.java, gnu/gcj/protocol/core/Handler.java, gnu/gcj/protocol/core/CoreInputStream.java, gnu/gcj/protocol/core/natCoreInputStream.cc: New files. * java/net/URL.java (setURLStreamHandler): Use gnu.gcj.protocol.core.Handler for the core protocol. * gnu/gcj/runtime/VMClassLoader.java (init): Add "core:/" to the end of java.class.path. * Makefile.am (ordinary_java_source_files): Add new java files. (nat_source_files): Add new native code files. * Makefile.in: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45450 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/net/URL.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libjava/java/net/URL.java') diff --git a/libjava/java/net/URL.java b/libjava/java/net/URL.java index 25837325fc0..25291fad892 100644 --- a/libjava/java/net/URL.java +++ b/libjava/java/net/URL.java @@ -339,6 +339,10 @@ public final class URL implements Serializable // If a non-default factory has been set, use it to find the protocol. if (factory != null) handler = factory.createURLStreamHandler(protocol); + else if (protocol.equals ("core")) + { + handler = new gnu.gcj.protocol.core.Handler (); + } else if (protocol.equals ("file")) { // This is an interesting case. It's tempting to think that we -- cgit v1.2.1