summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/ProcessHandler.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-13 10:08:31 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 10:24:10 +0200
commit34bcf9b498bccb5c924f4cec850ff15d88df6f07 (patch)
tree4d9604ec8c3b73639338ec45a0618b5daa5cf0ed /qadevOOo/runner/helper/ProcessHandler.java
parent347926e8e57c1825261daa46c1886aa2ebf9571b (diff)
java: remove dead methods
found by UCDetector Change-Id: I219caa8e680dba5a395541a778df6144841c4dde
Diffstat (limited to 'qadevOOo/runner/helper/ProcessHandler.java')
-rw-r--r--qadevOOo/runner/helper/ProcessHandler.java40
1 files changed, 3 insertions, 37 deletions
diff --git a/qadevOOo/runner/helper/ProcessHandler.java b/qadevOOo/runner/helper/ProcessHandler.java
index 43372d224b67..35b32999cb4a 100644
--- a/qadevOOo/runner/helper/ProcessHandler.java
+++ b/qadevOOo/runner/helper/ProcessHandler.java
@@ -576,18 +576,7 @@ public class ProcessHandler
flushInput();
}
- /**
- * This method is useful when the process was executed
- * asynchronously. Waits for process to exit and return
- * its result.
- *
- * @return <code>true</code> if process correctly exited
- * (exit code doesn't affect to this result).
- */
- public boolean waitFor()
- {
- return waitFor(0);
- }
+
/**
* This method is useful when the process was executed
@@ -737,20 +726,7 @@ public class ProcessHandler
}
}
- /**
- * Prints the string specified to sdtin of external
- * command. '\n' is not added so if you need you
- * should terminate the string with '\n'. <p>
- *
- * The method can also be called before the command
- * starts its execution. Then the text is buffered
- * and transferred to command when it will be started.
- */
- public void printInputText(String str)
- {
- stdInBuff += str;
- flushInput();
- }
+
/**
* Returns information about was the command started or
@@ -940,15 +916,5 @@ public class ProcessHandler
}
}
- /**
- * to stop the extra thread, before he will kill a running office. This will stop the thread.
- */
- public void stopWatcher()
- {
- if (m_aWatcher != null)
- {
- m_aWatcher.holdOn();
- shortWait(5000);
- }
- }
+
}