diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
commit | 3edb9d1e2ca92fff1bea08d23338cabee47dd2e7 (patch) | |
tree | b62a1dc465ac160616672c6a64f630396e4fae05 /java/test/Ice/exceptions/AllTests.java | |
parent | Synced with Ice for C++ changes. (diff) | |
download | ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.bz2 ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.xz ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.zip |
Fixed half of bug 847: ice_newIdentiy -> ice_identity, ice_newFacet ->
ice_facet, etc
Diffstat (limited to 'java/test/Ice/exceptions/AllTests.java')
-rw-r--r-- | java/test/Ice/exceptions/AllTests.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Ice/exceptions/AllTests.java b/java/test/Ice/exceptions/AllTests.java index f417accf701..4f483d6928f 100644 --- a/java/test/Ice/exceptions/AllTests.java +++ b/java/test/Ice/exceptions/AllTests.java @@ -1084,7 +1084,7 @@ public class AllTests Ice.Identity id = Ice.Util.stringToIdentity("does not exist"); try { - ThrowerPrx thrower2 = ThrowerPrxHelper.uncheckedCast(thrower.ice_newIdentity(id)); + ThrowerPrx thrower2 = ThrowerPrxHelper.uncheckedCast(thrower.ice_identity(id)); thrower2.ice_ping(); test(false); } @@ -1314,7 +1314,7 @@ public class AllTests { Ice.Identity id = Ice.Util.stringToIdentity("does not exist"); - ThrowerPrx thrower2 = ThrowerPrxHelper.uncheckedCast(thrower.ice_newIdentity(id)); + ThrowerPrx thrower2 = ThrowerPrxHelper.uncheckedCast(thrower.ice_identity(id)); AMI_Thrower_throwAasAObjectNotExistI cb = new AMI_Thrower_throwAasAObjectNotExistI(); thrower2.throwAasA_async(cb, 1); test(cb.check()); |