summaryrefslogtreecommitdiffstats
path: root/java/sca/itest/callback-separatethread
diff options
context:
space:
mode:
authormcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2008-12-08 11:57:02 +0000
committermcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2008-12-08 11:57:02 +0000
commit3c2deb9bb4ac9c1930590fe3e0d42eb253cc578b (patch)
treeea63c97f7c39e72610e52c0731f777cedcb92fc3 /java/sca/itest/callback-separatethread
parent439b9cd4879c22ee98821fad62491a1517003cd6 (diff)
Added { and } characters for code blocks where they did not have them so the code is consistent with the rest of the Tuscany codebase
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724322 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/itest/callback-separatethread')
-rw-r--r--java/sca/itest/callback-separatethread/src/main/java/org/apache/tuscany/sca/itest/CallBackSeparateThreadClientImpl.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/sca/itest/callback-separatethread/src/main/java/org/apache/tuscany/sca/itest/CallBackSeparateThreadClientImpl.java b/java/sca/itest/callback-separatethread/src/main/java/org/apache/tuscany/sca/itest/CallBackSeparateThreadClientImpl.java
index 17197a7221..b5785e3c65 100644
--- a/java/sca/itest/callback-separatethread/src/main/java/org/apache/tuscany/sca/itest/CallBackSeparateThreadClientImpl.java
+++ b/java/sca/itest/callback-separatethread/src/main/java/org/apache/tuscany/sca/itest/CallBackSeparateThreadClientImpl.java
@@ -181,7 +181,8 @@ public class CallBackSeparateThreadClientImpl implements CallBackSeparateThreadC
} else if (aEventName.equals("SLOW")) {
final int newValue = slowCallbackCount.incrementAndGet();
//System.out.println("Received total of " + newValue + " slow call backs");
- } else
+ } else {
System.out.println("Unknown event type of " + aEventName);
+ }
}
}