summaryrefslogtreecommitdiff
path: root/java/demo/Ice/nested
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/Ice/nested
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/Ice/nested')
-rw-r--r--java/demo/Ice/nested/Nested.ice2
-rw-r--r--java/demo/Ice/nested/NestedClient.java2
-rw-r--r--java/demo/Ice/nested/NestedI.java4
3 files changed, 4 insertions, 4 deletions
diff --git a/java/demo/Ice/nested/Nested.ice b/java/demo/Ice/nested/Nested.ice
index 628cc6ef696..77fae054a2e 100644
--- a/java/demo/Ice/nested/Nested.ice
+++ b/java/demo/Ice/nested/Nested.ice
@@ -13,7 +13,7 @@
class Nested
{
- void nested(int level, Nested* proxy);
+ void nestedCall(int level, Nested* proxy);
};
#endif
diff --git a/java/demo/Ice/nested/NestedClient.java b/java/demo/Ice/nested/NestedClient.java
index 39709ed9130..d65bb25127f 100644
--- a/java/demo/Ice/nested/NestedClient.java
+++ b/java/demo/Ice/nested/NestedClient.java
@@ -58,7 +58,7 @@ class NestedClient extends Ice.Application
int level = Integer.parseInt(s);
if(level > 0)
{
- nested.nested(level, self);
+ nested.nestedCall(level, self);
}
}
catch(NumberFormatException ex)
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);
}
}