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: RuntimePermission


This fixes another divergence from the spec.
I've checked this in to Classpath as well.

2000-12-14  Tom Tromey  <tromey@redhat.com>

	* java/lang/RuntimePermission.java: Class now final.

Tom

Index: java/lang/RuntimePermission.java
===================================================================
RCS file: /cvs/gcc/egcs/libjava/java/lang/RuntimePermission.java,v
retrieving revision 1.1
diff -u -r1.1 RuntimePermission.java
--- RuntimePermission.java	2000/11/27 04:07:48	1.1
+++ RuntimePermission.java	2000/12/15 06:12:50
@@ -1,5 +1,5 @@
 /* RuntimePermission.java
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -124,7 +124,7 @@
  * 
  * @author Brian Jones
  */
-public class RuntimePermission extends java.security.BasicPermission
+public final class RuntimePermission extends java.security.BasicPermission
 {
   /**
    * 

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