mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-15 05:10:27 +08:00
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:
parent
5875306379
commit
a639e504d8
@ -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,
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user