diff options
Diffstat (limited to 'java/demo/Ice/value/Client.java')
-rw-r--r-- | java/demo/Ice/value/Client.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/demo/Ice/value/Client.java b/java/demo/Ice/value/Client.java index 13ce2737ac0..e634376486d 100644 --- a/java/demo/Ice/value/Client.java +++ b/java/demo/Ice/value/Client.java @@ -29,7 +29,7 @@ public class Client Ice.Properties properties = communicator.getProperties(); final String refProperty = "Value.Initial"; String ref = properties.getProperty(refProperty); - if (ref.length() == 0) + if(ref.length() == 0) { System.err.println("property `" + refProperty + "' not set"); return 1; @@ -37,7 +37,7 @@ public class Client Ice.ObjectPrx base = communicator.stringToProxy(ref); InitialPrx initial = InitialPrxHelper.checkedCast(base); - if (initial == null) + if(initial == null) { System.err.println("invalid object reference"); return 1; @@ -193,7 +193,7 @@ public class Client status = 1; } - if (communicator != null) + if(communicator != null) { try { |