diff options
| author | Paul Buetow <paul@buetow.org> | 2008-06-12 22:03:41 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-06-12 22:03:41 +0000 |
| commit | ae1e594e43bb18ca293124564c3a63e486bcc9f5 (patch) | |
| tree | 11c4023036c592a234929f9c85af8b76e514b560 /sources/core | |
| parent | 64a08ca2f7f574e63c39b10f8daaf69ee0dba391 (diff) | |
fixed deadlock (probably) bug
Diffstat (limited to 'sources/core')
| -rw-r--r-- | sources/core/VSTask.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/core/VSTask.java b/sources/core/VSTask.java index 13f9c01..1a5718c 100644 --- a/sources/core/VSTask.java +++ b/sources/core/VSTask.java @@ -370,8 +370,8 @@ public class VSTask implements Comparable, VSSerializable { String shortname = event.getShortname(); String shortname2 = event2.getShortname(); - /* One of those may be null if an VSAbstractEvent object has not - been initialized yet */ + /* One of those may be null if an VSAbstractEvent object has not + been initialized yet */ if (shortname == null || shortname2 == null) return 0; |
