aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2012-09-05 16:02:18 +0200
committerJiri Vanek <[email protected]>2012-09-05 16:02:18 +0200
commite5a1c62b36ce30b1b2fd2bb54f663ab553c247cd (patch)
tree79196fc0a499033230d27e2ef3d161ac13caa2a3 /tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
parentd770d3cb8aa41cbe3a860485bcb2c39a4f2cac40 (diff)
Fixing several errors which were causing incorrect behaviour causing correct reproduction of PR905
Diffstat (limited to 'tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java')
-rw-r--r--tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java b/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
index 3f4de4b..54fa248 100644
--- a/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
+++ b/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
@@ -201,15 +201,18 @@ public class LoggingBottleneck {
private void stdout(String idded) throws IOException {
DEFAULT_STDOUT_WRITER.write(idded);
DEFAULT_STDOUT_WRITER.newLine();
+ DEFAULT_STDOUT_WRITER.flush();
}
private void stderr(String idded) throws IOException {
DEFAULT_STDERR_WRITER.write(idded);
DEFAULT_STDERR_WRITER.newLine();
+ DEFAULT_STDERR_WRITER.flush();
}
private void stdeall(String idded) throws IOException {
DEFAULT_STDLOGS_WRITER.write(idded);
DEFAULT_STDLOGS_WRITER.newLine();
+ DEFAULT_STDLOGS_WRITER.flush();
}
}