summaryrefslogtreecommitdiff
path: root/java/test/Ice/exceptions/ThrowerI.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/test/Ice/exceptions/ThrowerI.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/test/Ice/exceptions/ThrowerI.java')
-rw-r--r--java/test/Ice/exceptions/ThrowerI.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/java/test/Ice/exceptions/ThrowerI.java b/java/test/Ice/exceptions/ThrowerI.java
index 5eb8868f254..1abf04d7727 100644
--- a/java/test/Ice/exceptions/ThrowerI.java
+++ b/java/test/Ice/exceptions/ThrowerI.java
@@ -35,7 +35,7 @@ public final class ThrowerI extends _ThrowerDisp
throws A
{
A ex = new A();
- ex.a = a;
+ ex.aMem = a;
throw ex;
}
@@ -47,13 +47,13 @@ public final class ThrowerI extends _ThrowerDisp
if(a > 0)
{
A ex = new A();
- ex.a = a;
+ ex.aMem = a;
throw ex;
}
else
{
D ex = new D();
- ex.d = a;
+ ex.dMem = a;
throw ex;
}
}
@@ -70,8 +70,8 @@ public final class ThrowerI extends _ThrowerDisp
throws B
{
B ex = new B();
- ex.a = a;
- ex.b = b;
+ ex.aMem = a;
+ ex.bMem = b;
throw ex;
}
@@ -94,9 +94,9 @@ public final class ThrowerI extends _ThrowerDisp
throws C
{
C ex = new C();
- ex.a = a;
- ex.b = b;
- ex.c = c;
+ ex.aMem = a;
+ ex.bMem = b;
+ ex.cMem = c;
throw ex;
}