MainThread.java: Explicitely import used classes.
authorMichael Koch <konqueror@gmx.de>
Thu, 29 Jul 2004 13:48:17 +0000 (13:48 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Thu, 29 Jul 2004 13:48:17 +0000 (13:48 +0000)
2004-07-29  Michael Koch  <konqueror@gmx.de>

* gnu/java/lang/MainThread.java:
Explicitely import used classes.
(args): Make it type String[].

From-SVN: r85299

libjava/ChangeLog
libjava/gnu/java/lang/MainThread.java

index c4032f2..ba265cf 100644 (file)
@@ -1,3 +1,9 @@
+2004-07-29  Michael Koch  <konqueror@gmx.de>
+
+       * gnu/java/lang/MainThread.java:
+       Explicitely import used classes.
+       (args): Make it type String[].
+
 2004-07-29 Dalibor Topic <robilad@kaffe.org>
 
        * gnu/java/awt/ComponentDataBlitOp.java,
index 61751b2..5937b87 100644 (file)
@@ -39,7 +39,8 @@ exception statement from your version. */
 
 package gnu.java.lang;
 
-import java.util.jar.*;
+import java.util.jar.Attributes;
+import java.util.jar.JarFile;
 
 /**
  * MainThread is a Thread which uses the main() method of some class.
@@ -63,7 +64,7 @@ final class MainThread extends Thread
   // Private data.
   private Class klass;
   private String klass_name;
-  private Object args;
+  private String[] args;
   private boolean is_jar;
 
   public MainThread(Class k, String[] args)