MainThread.java: Explicitely import used classes.

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
This commit is contained in:
Michael Koch 2004-07-29 13:48:17 +00:00 committed by Michael Koch
parent 5875306379
commit a639e504d8
2 changed files with 9 additions and 2 deletions

View 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,

View 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)