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/test/Ice/faultTolerance/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/test/Ice/faultTolerance/Client.java')
-rw-r--r-- | java/test/Ice/faultTolerance/Client.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/test/Ice/faultTolerance/Client.java b/java/test/Ice/faultTolerance/Client.java index a6f3a5f88b2..b3ca6f4620d 100644 --- a/java/test/Ice/faultTolerance/Client.java +++ b/java/test/Ice/faultTolerance/Client.java @@ -20,9 +20,9 @@ public class Client run(String[] args, Ice.Communicator communicator) { java.util.ArrayList ports = new java.util.ArrayList(args.length); - for (int i = 0; i < args.length; i++) + for(int i = 0; i < args.length; i++) { - if (args[i].charAt(0) == '-') + if(args[i].charAt(0) == '-') { // // TODO: Arguments recognized by the communicator are not @@ -47,7 +47,7 @@ public class Client ports.add(new Integer(port)); } - if (ports.isEmpty()) + if(ports.isEmpty()) { System.err.println("Client: no ports specified"); usage(); @@ -55,7 +55,7 @@ public class Client } int[] arr = new int[ports.size()]; - for (int i = 0; i < arr.length; i++) + for(int i = 0; i < arr.length; i++) { arr[i] = ((Integer)ports.get(i)).intValue(); } @@ -80,7 +80,7 @@ public class Client status = 1; } - if (communicator != null) + if(communicator != null) { try { |