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/test/Ice/exceptions/Test.ice | |
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/test/Ice/exceptions/Test.ice')
-rw-r--r-- | java/test/Ice/exceptions/Test.ice | 8 |
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 |