summaryrefslogtreecommitdiff
path: root/java/demo/Ice/value/Client.java
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-23 21:17:04 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-23 21:17:04 +0000
commit59788b8663f1f05a95b7afbbc6d2846dae11c96a (patch)
treec3ed292df270f11157decb83827d9af4144db52d /java/demo/Ice/value/Client.java
parentfile run.py was initially added on branch location. (diff)
downloadice-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.java6
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
{