diff dwtx/core/internal/jobs/ThreadJob.d @ 163:e5dd0081ccba

exclude jface.text from dsss.conf
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 01:01:30 +0200
parents 9d0585bcb7aa
children 862b05e0334a
line wrap: on
line diff
--- a/dwtx/core/internal/jobs/ThreadJob.d	Mon Sep 08 00:51:37 2008 +0200
+++ b/dwtx/core/internal/jobs/ThreadJob.d	Mon Sep 08 01:01:30 2008 +0200
@@ -119,7 +119,7 @@
         String msg = buf.toString();
         if (JobManager.DEBUG || JobManager.DEBUG_BEGIN_END) {
             Stdout.formatln("{}",msg);
-            Exception t = lastPush is null ? new IllegalArgumentException("") : lastPush;
+            Exception t = lastPush is null ? cast(Exception)new IllegalArgumentException("") : cast(Exception)lastPush;
             IStatus error = new Status(IStatus.ERROR, JobManager.PI_JOBS, 1, msg, t);
             RuntimeLog.log(error);
         }