From 229c048a08eb78aa705470478cdde6ed6a84e493 Mon Sep 17 00:00:00 2001
From: Mikhailo Seledtsov <mseledtsov@openjdk.org>
Date: Wed, 8 Nov 2017 20:15:56 -0800
Subject: [PATCH] 8189213: [TESTBUG] Running jtreg tests on machine without
 docker shows extra message

Removed the message from VMProps.java

Reviewed-by: dholmes
---
 test/jtreg-ext/requires/VMProps.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/test/jtreg-ext/requires/VMProps.java b/test/jtreg-ext/requires/VMProps.java
index 63c9ae9b049..13632fe7abe 100644
--- a/test/jtreg-ext/requires/VMProps.java
+++ b/test/jtreg-ext/requires/VMProps.java
@@ -347,7 +347,6 @@ public class VMProps implements Callable<Map<String, String>> {
             isSupported = checkDockerSupport();
         } catch (Exception e) {
             isSupported = false;
-            System.err.println("dockerSupport() threw exception: " + e);
         }
 
         return (isSupported) ? "true" : "false";