From 84d613f771c150f9da03c5cf50e2c05515f98df9 Mon Sep 17 00:00:00 2001 From: StephanEwen Date: Wed, 8 Jan 2014 13:06:11 +0100 Subject: [PATCH] Fixed bug in web-client. --- .../main/java/eu/stratosphere/nephele/client/JobClient.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/stratosphere-runtime/src/main/java/eu/stratosphere/nephele/client/JobClient.java b/stratosphere-runtime/src/main/java/eu/stratosphere/nephele/client/JobClient.java index 53cf42eb97ffc..321c5fda0ecee 100644 --- a/stratosphere-runtime/src/main/java/eu/stratosphere/nephele/client/JobClient.java +++ b/stratosphere-runtime/src/main/java/eu/stratosphere/nephele/client/JobClient.java @@ -393,10 +393,6 @@ private void logErrorAndRethrow(final String errorMessage) throws IOException { } public void setConsoleStreamForReporting(PrintStream stream) { - if (stream == null) { - throw new IllegalArgumentException("Console stream must not be null."); - } - this.console = stream; }