8189213: [TESTBUG] Running jtreg tests on machine without docker shows extra message

Removed the message from VMProps.java

Reviewed-by: dholmes
This commit is contained in:
Mikhailo Seledtsov 2017-11-08 20:15:56 -08:00
parent a68609ede5
commit 229c048a08

@ -347,7 +347,6 @@ public class VMProps implements Callable<Map<String, String>> {
isSupported = checkDockerSupport(); isSupported = checkDockerSupport();
} catch (Exception e) { } catch (Exception e) {
isSupported = false; isSupported = false;
System.err.println("dockerSupport() threw exception: " + e);
} }
return (isSupported) ? "true" : "false"; return (isSupported) ? "true" : "false";