summaryrefslogtreecommitdiff
path: root/java/test/IceGrid/simple/Client.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/IceGrid/simple/Client.java')
-rw-r--r--java/test/IceGrid/simple/Client.java40
1 files changed, 20 insertions, 20 deletions
diff --git a/java/test/IceGrid/simple/Client.java b/java/test/IceGrid/simple/Client.java
index 55e98a2c68b..0c91947c647 100644
--- a/java/test/IceGrid/simple/Client.java
+++ b/java/test/IceGrid/simple/Client.java
@@ -14,28 +14,28 @@ public class Client
private static int
run(String[] args, Ice.Communicator communicator)
{
- boolean withDeploy = false;
- for(int i = 1; i < args.length; i++)
- {
- if(args[i].equals("--with-deploy"))
- {
- withDeploy = true;
- break;
- }
- }
+ boolean withDeploy = false;
+ for(int i = 1; i < args.length; i++)
+ {
+ if(args[i].equals("--with-deploy"))
+ {
+ withDeploy = true;
+ break;
+ }
+ }
- ;
+ ;
- if(!withDeploy)
- {
- AllTests.allTests(communicator);
- }
- else
- {
- AllTests.allTestsWithDeploy(communicator);
- }
+ if(!withDeploy)
+ {
+ AllTests.allTests(communicator);
+ }
+ else
+ {
+ AllTests.allTestsWithDeploy(communicator);
+ }
- return 0;
+ return 0;
}
public static void
@@ -68,7 +68,7 @@ public class Client
}
}
- System.gc();
+ System.gc();
System.exit(status);
}
}