summaryrefslogtreecommitdiff
path: root/java/demo/IceBox/hello/Client.java
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-07-10 05:33:40 +0000
committerMichi Henning <michi@zeroc.com>2002-07-10 05:33:40 +0000
commit71cd56526153562cdb420c1244c23cd1d835c6dd (patch)
tree78c4bf95f93828398cbcdce36461b1539574e238 /java/demo/IceBox/hello/Client.java
parentChanged C++ code generator to escape Slice identifiers that are C++ (diff)
downloadice-71cd56526153562cdb420c1244c23cd1d835c6dd.tar.bz2
ice-71cd56526153562cdb420c1244c23cd1d835c6dd.tar.xz
ice-71cd56526153562cdb420c1244c23cd1d835c6dd.zip
Fixed demos and exception test to get rid of case-insensitivity warnings.
Diffstat (limited to 'java/demo/IceBox/hello/Client.java')
-rw-r--r--java/demo/IceBox/hello/Client.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/java/demo/IceBox/hello/Client.java b/java/demo/IceBox/hello/Client.java
index a52896027b7..50a5cd0e245 100644
--- a/java/demo/IceBox/hello/Client.java
+++ b/java/demo/IceBox/hello/Client.java
@@ -72,23 +72,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"))
{