diff org.eclipse.jface/src/org/eclipse/jface/operation/IThreadListener.d @ 19:52184e4b815c

no more direct tango.core.Thread. Rename JThread to java.lang.Thread.
author Frank Benoit <benoit@tionex.de>
date Wed, 18 Mar 2009 10:55:25 +0100
parents bc29606a740c
children
line wrap: on
line diff
--- a/org.eclipse.jface/src/org/eclipse/jface/operation/IThreadListener.d	Wed Mar 18 09:57:53 2009 +0100
+++ b/org.eclipse.jface/src/org/eclipse/jface/operation/IThreadListener.d	Wed Mar 18 10:55:25 2009 +0100
@@ -13,7 +13,7 @@
 module org.eclipse.jface.operation.IThreadListener;
 
 import java.lang.all;
-import java.lang.JThread;
+import java.lang.Thread;
 
 /**
  * A thread listener is an object that is interested in receiving notifications
@@ -29,5 +29,5 @@
      *
      * @param thread The new thread
      */
-    public void threadChange(JThread thread);
+    public void threadChange(Thread thread);
 }