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: FYI: java.lang.SecurityManager constructor


This is another spec fix.
I'm checking it in.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>
	* java/lang/SecurityManager.java (SecurityManager): Now public.

Index: java/lang/SecurityManager.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/SecurityManager.java,v
retrieving revision 1.5
diff -u -r1.5 SecurityManager.java
--- java/lang/SecurityManager.java 2001/09/02 06:18:48 1.5
+++ java/lang/SecurityManager.java 2001/10/13 23:23:04
@@ -751,7 +751,7 @@
 		return Thread.currentThread().getThreadGroup();
 	}
 
-	protected SecurityManager () {
+	public SecurityManager () {
 		if (System.getSecurityManager () != null)
 			throw new SecurityException ();
 	}


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