Skip to content

Commit 12769d6

Browse files
kool79diemol
andauthored
[java] Revert workaround for old netty http client (addendum to #12843) (#14134)
* [java] Revert workaround for old netty http client (addendum to #12843) Workaround was made as part of the fix (3f7f57c) the bug #11750 which was specific for netty client only. Since #12843 the netty client was removed. * Running format script --------- Co-authored-by: Diego Molina <[email protected]> Co-authored-by: Diego Molina <[email protected]>
1 parent 7334bfc commit 12769d6

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

java/src/org/openqa/selenium/chromium/ChromiumOptions.java

+1-14
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
import java.util.HashMap;
3232
import java.util.List;
3333
import java.util.Map;
34-
import java.util.Optional;
3534
import java.util.Set;
3635
import java.util.TreeMap;
3736
import java.util.stream.Stream;
@@ -120,24 +119,12 @@ public T addArguments(String... arguments) {
120119
* "allow-outdated-plugins");
121120
* </code></pre>
122121
*
123-
* <p>Each argument may contain an option "--" prefix: "--foo" or "foo". Arguments with an
122+
* <p>Each argument may contain an optional "--" prefix: "--foo" or "foo". Arguments with an
124123
* associated value should be delimited with an "=": "foo=bar".
125124
*
126125
* @param arguments The arguments to use when starting Chrome.
127126
*/
128127
public T addArguments(List<String> arguments) {
129-
/*
130-
--remote-allow-origins is being added by default since Chrome 111. We need to check
131-
if the argument already exists and then remove it.
132-
*/
133-
String remoteAllowOrigins = "remote-allow-origins";
134-
Optional<String> newArg =
135-
arguments.stream().filter(arg -> arg.contains(remoteAllowOrigins)).findFirst();
136-
Optional<String> existingArg =
137-
args.stream().filter(arg -> arg.contains(remoteAllowOrigins)).findFirst();
138-
if (newArg.isPresent() && existingArg.isPresent()) {
139-
args.remove(existingArg.get());
140-
}
141128
args.addAll(arguments);
142129
return (T) this;
143130
}

0 commit comments

Comments
 (0)