diff options
author | Michi Henning <michi@zeroc.com> | 2002-07-10 05:33:40 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-07-10 05:33:40 +0000 |
commit | 71cd56526153562cdb420c1244c23cd1d835c6dd (patch) | |
tree | 78c4bf95f93828398cbcdce36461b1539574e238 /java/demo/Ice/nested/NestedI.java | |
parent | Changed C++ code generator to escape Slice identifiers that are C++ (diff) | |
download | ice-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/Ice/nested/NestedI.java')
-rw-r--r-- | java/demo/Ice/nested/NestedI.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/demo/Ice/nested/NestedI.java b/java/demo/Ice/nested/NestedI.java index 1ef3cdaf0f9..9d7291eb7a2 100644 --- a/java/demo/Ice/nested/NestedI.java +++ b/java/demo/Ice/nested/NestedI.java @@ -16,12 +16,12 @@ class NestedI extends Nested } public void - nested(int level, NestedPrx proxy, Ice.Current current) + nestedCall(int level, NestedPrx proxy, Ice.Current current) { System.out.println("" + level); if(--level > 0) { - proxy.nested(level, _self, current.ctx); + proxy.nestedCall(level, _self, current.ctx); } } |