Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2015-03-06 19:50:53 +0000
committerslewis2015-03-06 19:50:53 +0000
commit6adf405bff2df52e2148ac95fbd6044f76df158c (patch)
tree98494df2dd0edbb99444842b697c5e296d279ae4
parente3a81c8d35d59bb0ad240438d18d4345ca8185d3 (diff)
downloadorg.eclipse.ecf-6adf405bff2df52e2148ac95fbd6044f76df158c.tar.gz
org.eclipse.ecf-6adf405bff2df52e2148ac95fbd6044f76df158c.tar.xz
org.eclipse.ecf-6adf405bff2df52e2148ac95fbd6044f76df158c.zip
Changed message to System.out for TimeService host registration andR-Release_HEAD-sdk_feature-148_2015-03-06_20-19-57
-rw-r--r--examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
index 1e58175b5..997d05723 100644
--- a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
+++ b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
@@ -38,7 +38,7 @@ public class Activator implements BundleActivator {
props);
// Print out that ITimeService remote service registration
- System.out.println("MyTimeService host registered with registration="
+ System.out.println("TimeService host registered with registration="
+ timeServiceRegistration);
}

Back to the top