diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-05 09:54:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-05 11:31:50 +0200 |
commit | 0c5f51ebbcb7e22baa913e2012e3dcfcc6cf7897 (patch) | |
tree | 3d441110176e37c1a6ba2d15a3653d5023863075 /testtools | |
parent | d26540bb05b0443e7988da34372c86f88cbf1f6c (diff) |
java: remove commented out code
Change-Id: I44e2043e5da23bc9421c03e550ef1d8b7ebaad36
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/com/sun/star/comp/bridge/TestComponent.java | 4 | ||||
-rw-r--r-- | testtools/qa/cli/CLITest.java | 2 | ||||
-rw-r--r-- | testtools/qa/cliversioning/VersionTestCase.java | 1 |
3 files changed, 0 insertions, 7 deletions
diff --git a/testtools/com/sun/star/comp/bridge/TestComponent.java b/testtools/com/sun/star/comp/bridge/TestComponent.java index bfc41cfaad76..65a10c008d11 100644 --- a/testtools/com/sun/star/comp/bridge/TestComponent.java +++ b/testtools/com/sun/star/comp/bridge/TestComponent.java @@ -717,8 +717,6 @@ public class TestComponent { } public void call(int nCallId , int nWaitMUSEC) throws com.sun.star.uno.RuntimeException { -// TimeValue value = { nWaitMUSEC / 1000000 , nWaitMUSEC * 1000 }; -// osl_waitThread( &value ); try { Thread.sleep(nWaitMUSEC / 10000); } @@ -736,8 +734,6 @@ public class TestComponent { } public void callOneway( int nCallId , int nWaitMUSEC ) throws com.sun.star.uno.RuntimeException { -// TimeValue value = { nWaitMUSEC / 1000000 , nWaitMUSEC * 1000 }; -// osl_waitThread( &value ); try { Thread.sleep(nWaitMUSEC / 10000); } diff --git a/testtools/qa/cli/CLITest.java b/testtools/qa/cli/CLITest.java index 4bfafe15750c..9567e1ac408f 100644 --- a/testtools/qa/cli/CLITest.java +++ b/testtools/qa/cli/CLITest.java @@ -62,9 +62,7 @@ public class CLITest extends ComplexTestCase System.out.println("\n ###" + e.getMessage() + "\n"); } -// System.out.println("### waiting for " + testProgram); proc.waitFor(); -// System.out.println("### " + testProgram + " finished"); int retVal = proc.exitValue(); if (retVal != 0) failed("CLI test failed."); diff --git a/testtools/qa/cliversioning/VersionTestCase.java b/testtools/qa/cliversioning/VersionTestCase.java index 6b6fdc375939..93b464fcc069 100644 --- a/testtools/qa/cliversioning/VersionTestCase.java +++ b/testtools/qa/cliversioning/VersionTestCase.java @@ -46,7 +46,6 @@ public class VersionTestCase extends ComplexTestCase if (sSystemRoot == null || sSystemRoot.length() == 0) failed("Check the make file. Java must be called with -DSystemRoot=%SystemRoot%."); -// System.out.println("UNO_PATH="+unoPath); //We need to set the PATH because otherwise it appears that runtests inherits the PATH //from build environment. Then the bootstrapping fails because the libraries //are not used from the office. |