This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
Patch: Yet another divergence
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: Yet another divergence
- From: Tom Tromey <tromey at redhat dot com>
- Date: 14 Dec 2000 23:29:39 -0700
- Reply-To: tromey at redhat dot com
We have a lot of minor divergences from 1.2. Here's another.
2000-12-14 Tom Tromey <tromey@redhat.com>
* java/lang/Thread.java (checkAccess): Now final.
Tom
Index: java/lang/Thread.java
===================================================================
RCS file: /cvs/gcc/egcs/libjava/java/lang/Thread.java,v
retrieving revision 1.15
diff -u -r1.15 Thread.java
--- Thread.java 2000/11/27 04:07:48 1.15
+++ Thread.java 2000/12/15 06:14:59
@@ -37,7 +37,7 @@
return currentThread().getThreadGroup().activeCount();
}
- public void checkAccess ()
+ public final void checkAccess ()
{
SecurityManager s = System.getSecurityManager();
if (s != null)