diff options
Diffstat (limited to 'csharp/test/Ice/seqMapping/Client.cs')
-rw-r--r-- | csharp/test/Ice/seqMapping/Client.cs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/csharp/test/Ice/seqMapping/Client.cs b/csharp/test/Ice/seqMapping/Client.cs index d11950a3ce2..2b99829d7eb 100644 --- a/csharp/test/Ice/seqMapping/Client.cs +++ b/csharp/test/Ice/seqMapping/Client.cs @@ -38,18 +38,10 @@ public class Client try { Ice.InitializationData data = new Ice.InitializationData(); -#if COMPACT - // - // When using Ice for .NET Compact Framework, we need to specify - // the assembly so that Ice can locate classes and exceptions. - // - data.properties = Ice.Util.createProperties(); - data.properties.setProperty("Ice.FactoryAssemblies", "client"); -#endif communicator = Ice.Util.initialize(ref args, data); status = run(args, communicator); } - catch(System.Exception ex) + catch(Exception ex) { Console.Error.WriteLine(ex); status = 1; @@ -67,7 +59,6 @@ public class Client status = 1; } } - return status; } } |