Skip to content

Commit

Permalink
[java] Removing Opera leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Aug 19, 2022
1 parent 912b4a4 commit 7295d54
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 52 deletions.
2 changes: 0 additions & 2 deletions java/src/org/openqa/selenium/remote/CapabilitiesUtils.java
Expand Up @@ -32,7 +32,6 @@
import org.openqa.selenium.remote.session.EdgeFilter;
import org.openqa.selenium.remote.session.FirefoxFilter;
import org.openqa.selenium.remote.session.InternetExplorerFilter;
import org.openqa.selenium.remote.session.OperaFilter;
import org.openqa.selenium.remote.session.ProxyTransform;
import org.openqa.selenium.remote.session.SafariFilter;
import org.openqa.selenium.remote.session.StripAnyPlatform;
Expand Down Expand Up @@ -201,7 +200,6 @@ private static Set<CapabilitiesFilter> getCapabilityFilters() {
.add(new EdgeFilter())
.add(new FirefoxFilter())
.add(new InternetExplorerFilter())
.add(new OperaFilter())
.add(new SafariFilter());
return adapters.build();
}
Expand Down
Expand Up @@ -17,15 +17,6 @@

package org.openqa.selenium.remote.server;

import static org.openqa.selenium.remote.Browser.CHROME;
import static org.openqa.selenium.remote.Browser.EDGE;
import static org.openqa.selenium.remote.Browser.FIREFOX;
import static org.openqa.selenium.remote.Browser.HTMLUNIT;
import static org.openqa.selenium.remote.Browser.IE;
import static org.openqa.selenium.remote.Browser.OPERA;
import static org.openqa.selenium.remote.Browser.SAFARI;
import static org.openqa.selenium.remote.CapabilityType.BROWSER_NAME;

import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
Expand All @@ -50,6 +41,14 @@
import java.util.regex.Pattern;
import java.util.stream.StreamSupport;

import static org.openqa.selenium.remote.Browser.CHROME;
import static org.openqa.selenium.remote.Browser.EDGE;
import static org.openqa.selenium.remote.Browser.FIREFOX;
import static org.openqa.selenium.remote.Browser.HTMLUNIT;
import static org.openqa.selenium.remote.Browser.IE;
import static org.openqa.selenium.remote.Browser.SAFARI;
import static org.openqa.selenium.remote.CapabilityType.BROWSER_NAME;

/**
* Used to create new {@link ActiveSession} instances as required.
*/
Expand Down
41 changes: 0 additions & 41 deletions java/src/org/openqa/selenium/remote/session/OperaFilter.java

This file was deleted.

0 comments on commit 7295d54

Please sign in to comment.