We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0a07bd commit c1eb57bCopy full SHA for c1eb57b
java/src/org/openqa/selenium/safari/AddHasDebugger.java
@@ -55,11 +55,6 @@ public Class<HasDebugger> getDescribedInterface() {
55
56
@Override
57
public HasDebugger getImplementation(Capabilities capabilities, ExecuteMethod executeMethod) {
58
- return new HasDebugger() {
59
- @Override
60
- public void attachDebugger() {
61
- executeMethod.execute(ATTACH_DEBUGGER, null);
62
- }
63
- };
+ return () -> executeMethod.execute(ATTACH_DEBUGGER, null);
64
}
65
0 commit comments