summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/ProcessHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper/ProcessHandler.java')
-rw-r--r--qadevOOo/runner/helper/ProcessHandler.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/qadevOOo/runner/helper/ProcessHandler.java b/qadevOOo/runner/helper/ProcessHandler.java
index 012a38fd0a47..85accac84cd8 100644
--- a/qadevOOo/runner/helper/ProcessHandler.java
+++ b/qadevOOo/runner/helper/ProcessHandler.java
@@ -765,20 +765,6 @@ public class ProcessHandler
return exitValue;
}
- /** Causes the thread to sleep some time.
- */
- private static void shortWait(long milliseconds)
- {
- try
- {
- Thread.sleep(milliseconds);
- }
- catch (InterruptedException e)
- {
- System.out.println("While waiting :" + e);
- }
- }
-
private void dbg(String message)
{
if (debug)
@@ -813,18 +799,6 @@ public class ProcessHandler
{
return m_bInterrupt;
}
- /**
- * Marks the thread to hold on, next time
- * STUPID: The thread must poll this flag itself.
- *
- * Reason: interrupt() seems not to work as expected.
- */
- private synchronized void holdOn()
- {
- m_bInterrupt = true;
- interrupt();
- }
-
@Override
public void run()
{