This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: VMClassLoader


I'm checking this in on the trunk.  If this class is not public then
it can't be accessed from ClassLoader.  I'm not certain why gcj allows
this; an older version of gcj I'm using here does not.  I'm putting
this on the trunk.

2001-05-21  Tom Tromey  <tromey@redhat.com>

	* gnu/gcj/runtime/VMClassLoader.java (VMClassLoader): Now public.

Tom

Index: gnu/gcj/runtime/VMClassLoader.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/gcj/runtime/VMClassLoader.java,v
retrieving revision 1.6
diff -u -r1.6 VMClassLoader.java
--- VMClassLoader.java	2001/04/25 15:45:13	1.6
+++ VMClassLoader.java	2001/05/21 19:19:47
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999  Free Software Foundation
+/* Copyright (C) 1999, 2001  Free Software Foundation
 
    This file is part of libgcj.
 
@@ -14,7 +14,7 @@
 import java.util.StringTokenizer;
 import java.net.URL;
 
-final class VMClassLoader extends java.net.URLClassLoader
+public final class VMClassLoader extends java.net.URLClassLoader
 {
   private VMClassLoader ()
   {	


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]