This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: URL -vs- Jessie
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 04 Apr 2005 11:42:49 -0600
- Subject: Patch: FYI: URL -vs- Jessie
- Reply-to: tromey at redhat dot com
I'm checking this in on the trunk and the 4.0 branch.
This is a patch I put into Classpath a while ago. We want to search
Jessie for URL protocol providers by default.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* java/net/URL.java (DEFAULT_SEARCH_PATH): Added
org.metastatic.jessie.
Index: java/net/URL.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/net/URL.java,v
retrieving revision 1.46
diff -u -r1.46 URL.java
--- java/net/URL.java 22 Feb 2005 21:11:28 -0000 1.46
+++ java/net/URL.java 4 Apr 2005 17:40:29 -0000
@@ -125,7 +125,7 @@
public final class URL implements Serializable
{
private static final String DEFAULT_SEARCH_PATH =
- "gnu.java.net.protocol|gnu.inet";
+ "org.metastatic.jessie|gnu.java.net.protocol|gnu.inet";
// Cached System ClassLoader
private static ClassLoader systemClassLoader;