summaryrefslogtreecommitdiff
path: root/java/test/Ice/exceptions/Test.ice
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/test/Ice/exceptions/Test.ice
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/test/Ice/exceptions/Test.ice')
-rw-r--r--java/test/Ice/exceptions/Test.ice8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/test/Ice/exceptions/Test.ice b/java/test/Ice/exceptions/Test.ice
index b48333b1b75..ffc5fc673ff 100644
--- a/java/test/Ice/exceptions/Test.ice
+++ b/java/test/Ice/exceptions/Test.ice
@@ -15,22 +15,22 @@ interface Thrower;
exception A
{
- int a;
+ int aMem;
};
exception B extends A
{
- int b;
+ int bMem;
};
exception C extends B
{
- int c;
+ int cMem;
};
exception D
{
- int d;
+ int dMem;
};
interface Thrower