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
2 changed files with 9 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue