summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qadevOOo/runner/helper/ProcessHandler.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/qadevOOo/runner/helper/ProcessHandler.java b/qadevOOo/runner/helper/ProcessHandler.java
index 9105a86b673b..0057e8970713 100644
--- a/qadevOOo/runner/helper/ProcessHandler.java
+++ b/qadevOOo/runner/helper/ProcessHandler.java
@@ -120,7 +120,6 @@ public class ProcessHandler
private boolean isFinished = false;
private boolean isStarted = false;
private long mTimeOut = 0;
- private String stdInBuff = "";
private Pump stdout = null;
private Pump stderr = null;
private PrintStream stdIn = null;
@@ -546,11 +545,9 @@ public class ProcessHandler
return;
}
- synchronized(stdInBuff)
+ synchronized(this)
{
- stdIn.print(stdInBuff);
stdIn.flush();
- stdInBuff = "";
}
}