diff options
Diffstat (limited to 'cs/demo/IceGrid/simple/Server.cs')
-rw-r--r-- | cs/demo/IceGrid/simple/Server.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cs/demo/IceGrid/simple/Server.cs b/cs/demo/IceGrid/simple/Server.cs index 9dc3c5e3b38..12e42ed79a0 100644 --- a/cs/demo/IceGrid/simple/Server.cs +++ b/cs/demo/IceGrid/simple/Server.cs @@ -12,8 +12,8 @@ public class Server : Ice.Application public override int run(string[] args) { Ice.ObjectAdapter adapter = communicator().createObjectAdapter("Hello"); - Ice.Properties properties = communicator().getProperties(); - Ice.Identity id = communicator().stringToIdentity(properties.getProperty("Identity")); + Ice.Properties properties = communicator().getProperties(); + Ice.Identity id = communicator().stringToIdentity(properties.getProperty("Identity")); adapter.add(new HelloI(properties.getProperty("Ice.ServerId")), id); adapter.activate(); communicator().waitForShutdown(); @@ -22,8 +22,8 @@ public class Server : Ice.Application static public void Main(string[] args) { - Server app = new Server(); - int status = app.main(args); + Server app = new Server(); + int status = app.main(args); if(status != 0) { System.Environment.Exit(status); |