Skip to content

Commit 803265b

Browse files
author
Oscar Devora
committed
run format script
1 parent 5b8df6e commit 803265b

File tree

3 files changed

+75
-64
lines changed

3 files changed

+75
-64
lines changed

java/src/org/openqa/selenium/support/events/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ java_library(
88
],
99
deps = [
1010
"//java/src/org/openqa/selenium:core",
11+
"//java/src/org/openqa/selenium/remote",
1112
"//java/src/org/openqa/selenium/support/decorators",
12-
"//java/src/org/openqa/selenium/remote:remote",
1313
],
1414
)

java/src/org/openqa/selenium/support/events/EventFiringDecorator.java

-2
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,13 @@ public class EventFiringDecorator<T extends WebDriver> extends WebDriverDecorato
167167
private final List<WebDriverListener> listeners;
168168

169169
/**
170-
*
171170
* @param listeners the listeners to notify about events happening in the decorated WebDriver
172171
*/
173172
public EventFiringDecorator(WebDriverListener... listeners) {
174173
this.listeners = Arrays.asList(listeners);
175174
}
176175

177176
/**
178-
*
179177
* @param targetClass the class of the WebDriver to be decorated
180178
* @param listeners the listeners to notify about events happening in the decorated WebDriver
181179
*/

0 commit comments

Comments
 (0)