commit-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch: FYI: javadoc and import fix


From: Tom Tromey
Subject: Patch: FYI: javadoc and import fix
Date: 23 Apr 2004 15:23:35 -0600

One more minor patch.  This one fixes imports and javadoc.

Tom

2004-04-23  Tom Tromey  <address@hidden>

        * java/lang/System.java (runFinalizersOnExit): Updated javadoc.
        Cleaned up imports.

Index: java/lang/System.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/lang/System.java,v
retrieving revision 1.33
diff -u -r1.33 System.java
--- java/lang/System.java       23 Apr 2004 17:37:46 -0000      1.33
+++ java/lang/System.java       23 Apr 2004 21:14:19 -0000
@@ -38,16 +38,12 @@
 
 package java.lang;
 
-import java.io.BufferedInputStream;
-import java.io.BufferedOutputStream;
-import java.io.FileDescriptor;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
+import gnu.classpath.Configuration;
+
 import java.io.InputStream;
 import java.io.PrintStream;
 import java.util.Properties;
 import java.util.PropertyPermission;
-import gnu.classpath.Configuration;
 
 /**
  * System represents system-wide resources; things that represent the
@@ -621,7 +617,7 @@
    * since it can force initialization on objects which are still in use
    * by live threads, leading to deadlock; therefore this is disabled by
    * default. There may be a security check, <code>checkExit(0)</code>. This
-   * calls <code>Runtime.getRuntime().runFinalizersOnExit()</code>.
+   * calls <code>Runtime.runFinalizersOnExit()</code>.
    *
    * @param finalizeOnExit whether to run finalizers on exit
    * @throws SecurityException if permission is denied




reply via email to

[Prev in Thread] Current Thread [Next in Thread]