diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-11 15:58:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-14 10:59:48 +0200 |
commit | ac5954d7c540f34702033d7d951d1d16cb96730a (patch) | |
tree | 310ba9698a10c74662de0714db683f932de32b0c /bridges/test/lib/TestBed.java | |
parent | 89c0a2b2f65beeb6f42d3334662100a13169a8d6 (diff) |
java: remove commented out code
Change-Id: I05c907a38b562231e968c17f14e09ef80e0a6ed1
Diffstat (limited to 'bridges/test/lib/TestBed.java')
-rw-r--r-- | bridges/test/lib/TestBed.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bridges/test/lib/TestBed.java b/bridges/test/lib/TestBed.java index 4f6bf13621d3..3e3323568666 100644 --- a/bridges/test/lib/TestBed.java +++ b/bridges/test/lib/TestBed.java @@ -37,7 +37,6 @@ import java.io.PrintStream; public final class TestBed { public boolean execute(XInstanceProvider provider, boolean waitForServer, Class client, long wait) throws Exception { - // assert client.isAssignableFrom(client) && wait >= 0; synchronized (lock) { server = new Server(provider); server.start(); @@ -45,10 +44,6 @@ public final class TestBed { } Process p = Runtime.getRuntime().exec(new String[] { "java", "-classpath", System.getProperty("java.class.path"), -/* - "-Xdebug", - "-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n", -*/ client.getName() }); pipe(p.getInputStream(), System.out, "CO> "); pipe(p.getErrorStream(), System.err, "CE> "); |