summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/acm
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/acm')
-rw-r--r--csharp/test/Ice/acm/Server.cs2
-rw-r--r--csharp/test/Ice/acm/TestI.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/acm/Server.cs b/csharp/test/Ice/acm/Server.cs
index b833ebccce9..1482464c5cb 100644
--- a/csharp/test/Ice/acm/Server.cs
+++ b/csharp/test/Ice/acm/Server.cs
@@ -24,7 +24,7 @@ public class Server
communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010");
communicator.getProperties().setProperty("TestAdapter.ACM.Timeout", "0");
Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter");
- Ice.Identity id = communicator.stringToIdentity("communicator");
+ Ice.Identity id = Ice.Util.stringToIdentity("communicator");
adapter.add(new RemoteCommunicatorI(), id);
adapter.activate();
diff --git a/csharp/test/Ice/acm/TestI.cs b/csharp/test/Ice/acm/TestI.cs
index f44180bbf82..0dd3455daf7 100644
--- a/csharp/test/Ice/acm/TestI.cs
+++ b/csharp/test/Ice/acm/TestI.cs
@@ -50,7 +50,7 @@ public class RemoteObjectAdapterI : RemoteObjectAdapterDisp_
{
_adapter = adapter;
_testIntf = TestIntfPrxHelper.uncheckedCast(_adapter.add(new TestI(),
- _adapter.getCommunicator().stringToIdentity("test")));
+ Ice.Util.stringToIdentity("test")));
_adapter.activate();
}