Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2015-08-05 01:08:01 +0000
committerslewis2015-08-05 01:08:01 +0000
commit83a5d9e0e272695fce93ccc53c1a6dec5f89a0ba (patch)
tree4dda5d4a9a6dfe8f560533c3f647b53a080a9b69 /examples
parent80a9f5ad2d0ed27d075b2a022b9e86c235601883 (diff)
downloadorg.eclipse.ecf-83a5d9e0e272695fce93ccc53c1a6dec5f89a0ba.tar.gz
org.eclipse.ecf-83a5d9e0e272695fce93ccc53c1a6dec5f89a0ba.tar.xz
org.eclipse.ecf-83a5d9e0e272695fce93ccc53c1a6dec5f89a0ba.zip
Added small bit of wording to timeservice client component
Diffstat (limited to 'examples')
-rw-r--r--examples/bundles/com.mycorp.examples.timeservice.consumer.ds/src/com/mycorp/examples/timeservice/consumer/ds/TimeServiceComponent.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/com.mycorp.examples.timeservice.consumer.ds/src/com/mycorp/examples/timeservice/consumer/ds/TimeServiceComponent.java b/examples/bundles/com.mycorp.examples.timeservice.consumer.ds/src/com/mycorp/examples/timeservice/consumer/ds/TimeServiceComponent.java
index cbcb004a6..c23055878 100644
--- a/examples/bundles/com.mycorp.examples.timeservice.consumer.ds/src/com/mycorp/examples/timeservice/consumer/ds/TimeServiceComponent.java
+++ b/examples/bundles/com.mycorp.examples.timeservice.consumer.ds/src/com/mycorp/examples/timeservice/consumer/ds/TimeServiceComponent.java
@@ -16,7 +16,7 @@ public class TimeServiceComponent {
void bindTimeService(ITimeService timeService) {
System.out.println("Discovered ITimeService via DS. Instance="+timeService);
// Call the service and print out result!
- System.out.println("Current time is: " + timeService.getCurrentTime());
+ System.out.println("Current time on remote is: " + timeService.getCurrentTime());
}
// Called by DS upon ITimeService undiscovery

Back to the top