summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/exceptions/Server.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/exceptions/Server.cs')
-rw-r--r--csharp/test/Ice/exceptions/Server.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp/test/Ice/exceptions/Server.cs b/csharp/test/Ice/exceptions/Server.cs
index 0b8885256a4..a8af5586552 100644
--- a/csharp/test/Ice/exceptions/Server.cs
+++ b/csharp/test/Ice/exceptions/Server.cs
@@ -53,9 +53,9 @@ public class Server
Ice.ObjectAdapter adapter2 = communicator.createObjectAdapter("TestAdapter2");
Ice.ObjectAdapter adapter3 = communicator.createObjectAdapter("TestAdapter3");
Ice.Object obj = new ThrowerI();
- adapter.add(obj, communicator.stringToIdentity("thrower"));
- adapter2.add(obj, communicator.stringToIdentity("thrower"));
- adapter3.add(obj, communicator.stringToIdentity("thrower"));
+ adapter.add(obj, Ice.Util.stringToIdentity("thrower"));
+ adapter2.add(obj, Ice.Util.stringToIdentity("thrower"));
+ adapter3.add(obj, Ice.Util.stringToIdentity("thrower"));
adapter.activate();
adapter2.activate();
adapter3.activate();