From 97a01c689bdb9526f7c2eba727c04966903e5b9b Mon Sep 17 00:00:00 2001 From: Alexei Barantsev Date: Tue, 8 May 2018 16:07:29 +0300 Subject: [PATCH] Moving DriverService.sendOutputTo back to public space --- .../src/org/openqa/selenium/remote/service/DriverService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/client/src/org/openqa/selenium/remote/service/DriverService.java b/java/client/src/org/openqa/selenium/remote/service/DriverService.java index 88b1ba2d9d85c..21a493efff141 100644 --- a/java/client/src/org/openqa/selenium/remote/service/DriverService.java +++ b/java/client/src/org/openqa/selenium/remote/service/DriverService.java @@ -234,7 +234,7 @@ protected boolean hasShutdownEndpoint() { return true; } - protected void sendOutputTo(OutputStream outputStream) { + public void sendOutputTo(OutputStream outputStream) { this.outputStream = Preconditions.checkNotNull(outputStream); }