aboutsummaryrefslogtreecommitdiff
path: root/src/SelfIvyClient.java
diff options
context:
space:
mode:
authorjestin2005-11-22 12:16:36 +0000
committerjestin2005-11-22 12:16:36 +0000
commit8e92224db5274f8a028f28f830b52e78ee88fda2 (patch)
tree2d4281a99d94329bce5b23af65377243cccbd98e /src/SelfIvyClient.java
parent5d466ac8508cf202bd025bc9d813b07fc47ac44b (diff)
downloadivy-java-8e92224db5274f8a028f28f830b52e78ee88fda2.zip
ivy-java-8e92224db5274f8a028f28f830b52e78ee88fda2.tar.gz
ivy-java-8e92224db5274f8a028f28f830b52e78ee88fda2.tar.bz2
ivy-java-8e92224db5274f8a028f28f830b52e78ee88fda2.tar.xz
See changes inside.
major change in multibus error handling. I reintroduced bugs ..
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);