From 18c6746750cb0c4f5cef6d7ed661e85dab100683 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 17 May 2008 22:41:35 +0000 Subject: Bugfix: Crash and Recover tasks use global time. --- sources/core/VSProcess.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sources/core/VSProcess.java') diff --git a/sources/core/VSProcess.java b/sources/core/VSProcess.java index d9fd0c5..bef1f58 100644 --- a/sources/core/VSProcess.java +++ b/sources/core/VSProcess.java @@ -297,10 +297,6 @@ public final class VSProcess extends VSPrefs { return isCrashed; } - public synchronized boolean hasCrashed() { - return hasCrashed; - } - public synchronized void isCrashed(boolean isCrashed) { this.isCrashed = isCrashed; crashHistory.add(new Long(globalTime)); @@ -308,6 +304,10 @@ public final class VSProcess extends VSPrefs { hasCrashed = true; } + public synchronized boolean hasCrashed() { + return hasCrashed; + } + public synchronized Color getCrashedColor() { return crashedColor; } -- cgit v1.2.3