aboutsummaryrefslogtreecommitdiff
path: root/src/SelfIvyClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/SelfIvyClient.java')
-rw-r--r--src/SelfIvyClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SelfIvyClient.java b/src/SelfIvyClient.java
index 43bfccb..f4a1cd2 100644
--- a/src/SelfIvyClient.java
+++ b/src/SelfIvyClient.java
@@ -112,7 +112,7 @@ class SelfIvyClient extends IvyClient {
boolean threaded=b.booleanValue();
if (!threaded) {
// runs the callback in the same thread
- callback.receive(client, tab);
+ callback.receive(client, tab); // TODO tab can be faulty ?!
} else {
// starts a new Thread for each callback ... ( Async API )
new Runner(callback,client,tab);