From 4ecce8286ff429a39ac1367b673214fe8d6aab29 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Sun, 13 Jul 2008 18:34:59 -0600 Subject: [PATCH] fix recursive invocation of Thread constructor --- classpath/java/lang/Thread.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classpath/java/lang/Thread.java b/classpath/java/lang/Thread.java index cae4e92234..731331051d 100644 --- a/classpath/java/lang/Thread.java +++ b/classpath/java/lang/Thread.java @@ -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();