Skip to content

Commit cdea559

Browse files
committed
Reducing visibility of DriverService.sendOutputTo method to protected (this change was announced in version 3.8)
1 parent 690591d commit cdea559

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

java/client/src/org/openqa/selenium/remote/service/DriverService.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -234,11 +234,7 @@ protected boolean hasShutdownEndpoint() {
234234
return true;
235235
}
236236

237-
/**
238-
* @deprecated Visibility will be restricted to 'protected' soon.
239-
*/
240-
@Deprecated
241-
public void sendOutputTo(OutputStream outputStream) {
237+
protected void sendOutputTo(OutputStream outputStream) {
242238
this.outputStream = Preconditions.checkNotNull(outputStream);
243239
}
244240

0 commit comments

Comments
 (0)