This is the mail archive of the java-patches@sources.redhat.com 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: Yet another divergence


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)

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