summaryrefslogtreecommitdiff
path: root/java/test/Ice/exceptions/AllTests.java
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2006-06-28 05:18:43 +0000
committerMichi Henning <michi@zeroc.com>2006-06-28 05:18:43 +0000
commit2ebdeea700fd7d02f13ccccc2dd77557f207db69 (patch)
treec29f10ef9d8a9c61f9a3eade96c288ca47ec8b73 /java/test/Ice/exceptions/AllTests.java
parentRenamed Sun's scandir and isalphasort to ice_scandir and ice_isalphasort (diff)
downloadice-2ebdeea700fd7d02f13ccccc2dd77557f207db69.tar.bz2
ice-2ebdeea700fd7d02f13ccccc2dd77557f207db69.tar.xz
ice-2ebdeea700fd7d02f13ccccc2dd77557f207db69.zip
Bug 472.
Diffstat (limited to 'java/test/Ice/exceptions/AllTests.java')
-rw-r--r--java/test/Ice/exceptions/AllTests.java12
1 files changed, 1 insertions, 11 deletions
diff --git a/java/test/Ice/exceptions/AllTests.java b/java/test/Ice/exceptions/AllTests.java
index c5e3287ab9d..493795d9436 100644
--- a/java/test/Ice/exceptions/AllTests.java
+++ b/java/test/Ice/exceptions/AllTests.java
@@ -792,7 +792,7 @@ public class AllTests
}
{
- System.out.print("testing object factory registration exceptions... ");
+ System.out.print("testing object factory registration exception... ");
Ice.ObjectFactory of = new ObjectFactoryI();
communicator.addObjectFactory(of, "::x");
try
@@ -803,16 +803,6 @@ public class AllTests
catch(Ice.AlreadyRegisteredException ex)
{
}
-
- communicator.removeObjectFactory("::x");
- try
- {
- communicator.removeObjectFactory("::x");
- test(false);
- }
- catch(Ice.NotRegisteredException ex)
- {
- }
System.out.println("ok");
}