diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
commit | 59788b8663f1f05a95b7afbbc6d2846dae11c96a (patch) | |
tree | c3ed292df270f11157decb83827d9af4144db52d /java/demo/Ice/value/Client.java | |
parent | file run.py was initially added on branch location. (diff) | |
download | ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.bz2 ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.xz ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.zip |
removed spaces after keywords
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 { |