summaryrefslogtreecommitdiff
path: root/java/demo/Ice/hello/Client.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/demo/Ice/hello/Client.java')
-rw-r--r--java/demo/Ice/hello/Client.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/java/demo/Ice/hello/Client.java b/java/demo/Ice/hello/Client.java
index 769b064e2ec..c761b2415a2 100644
--- a/java/demo/Ice/hello/Client.java
+++ b/java/demo/Ice/hello/Client.java
@@ -73,23 +73,23 @@ public class Client
}
if(line.equals("t"))
{
- twoway.hello();
+ twoway.sayHello();
}
else if(line.equals("o"))
{
- oneway.hello();
+ oneway.sayHello();
}
else if(line.equals("O"))
{
- batchOneway.hello();
+ batchOneway.sayHello();
}
else if(line.equals("d"))
{
- datagram.hello();
+ datagram.sayHello();
}
else if(line.equals("D"))
{
- batchDatagram.hello();
+ batchDatagram.sayHello();
}
else if(line.equals("f"))
{