Tim Rocktäschel
Results
2
issues of
Tim Rocktäschel
Use the following Snippet: ``` Java PrintStream oldErr = System.err; PrintStream newErr = new PrintStream(new ByteArrayOutputStream()); System.setErr(newErr); // do your work System.setErr(oldErr); ```
feature request