File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed
java/src/org/openqa/selenium/remote/http/jdk Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -126,15 +126,16 @@ protected PasswordAuthentication getPasswordAuthentication() {
126126
127127 // Remove credentials from URL
128128 try {
129- config = config .baseUri (
130- new URI (
131- config .baseUri ().getScheme (),
132- null ,
133- config .baseUri ().getHost (),
134- config .baseUri ().getPort (),
135- config .baseUri ().getPath (),
136- config .baseUri ().getQuery (),
137- config .baseUri ().getFragment ()));
129+ config =
130+ config .baseUri (
131+ new URI (
132+ config .baseUri ().getScheme (),
133+ null ,
134+ config .baseUri ().getHost (),
135+ config .baseUri ().getPort (),
136+ config .baseUri ().getPath (),
137+ config .baseUri ().getQuery (),
138+ config .baseUri ().getFragment ()));
138139 } catch (URISyntaxException e ) {
139140 LOG .log (Level .WARNING , "Could not strip credentials from URI" , e );
140141 }
You can’t perform that action at this time.
0 commit comments