Commit a639e504 by Michael Koch Committed by Michael Koch

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
parent 58753063
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,
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment