fix recursive invocation of Thread constructor

This commit is contained in:
Joel Dice 2008-07-13 18:34:59 -06:00
parent d28a860138
commit 4ecce8286f

View File

@ -23,7 +23,7 @@ public class Thread implements Runnable {
private String name;
public Thread(Runnable task, String name) {
this(task);
this.task = task;
this.name = name;
Thread current = currentThread();