Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-05-28 04:16:54 +0000
committerslewis2009-05-28 04:16:54 +0000
commitd1743001590e3bed8c06b8f1b15125cbdedb1260 (patch)
treef3c1a4e3e274ee5b4172de153bdc63e0042118c0
parent2f24609467327525527107d31e501fb544cfa0ab (diff)
downloadorg.eclipse.ecf-d1743001590e3bed8c06b8f1b15125cbdedb1260.tar.gz
org.eclipse.ecf-d1743001590e3bed8c06b8f1b15125cbdedb1260.tar.xz
org.eclipse.ecf-d1743001590e3bed8c06b8f1b15125cbdedb1260.zip
Fixes for hello host and consumer
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/Activator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/Activator.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/Activator.java
index 2069077f4..12195975c 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/Activator.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/Activator.java
@@ -70,7 +70,7 @@ public class Activator implements BundleActivator, IDistributionConstants, Servi
try {
// This method blocks until a return
future.get();
- System.out.println("Called futureExec successfully");
+ System.out.println("Called future.get() successfully");
} catch (Exception e) {
e.printStackTrace();
}

Back to the top