logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

Patch: FYI: javadoc and import fix: msg#00189

Subject: Patch: FYI: javadoc and import fix
One more minor patch.  This one fixes imports and javadoc.

Tom

2004-04-23  Tom Tromey  <tromey@xxxxxxxxxx>

        * 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


<Prev in Thread] Current Thread [Next in Thread>