Skip to content

Commit 05e9f41

Browse files
committed
reformat the code
1 parent 976ffda commit 05e9f41

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

java/src/org/openqa/selenium/bidi/BiDiProvider.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import java.util.Optional;
2727
import java.util.function.Predicate;
2828
import java.util.logging.Logger;
29-
3029
import org.openqa.selenium.Capabilities;
3130
import org.openqa.selenium.concurrent.Lazy;
3231
import org.openqa.selenium.remote.AugmenterProvider;
@@ -53,7 +52,10 @@ public Class<HasBiDi> getDescribedInterface() {
5352
public HasBiDi getImplementation(Capabilities caps, ExecuteMethod executeMethod) {
5453
final Lazy<BiDi> biDi = lazy(() -> establishBiDiConnection(caps));
5554

56-
LOG.log(INFO, "WebDriver augmented with BiDi interface; connection will not be verified until first use.");
55+
LOG.log(
56+
INFO,
57+
"WebDriver augmented with BiDi interface; connection will not be verified until first"
58+
+ " use.");
5759

5860
return new HasBiDi() {
5961
@Override

java/src/org/openqa/selenium/concurrent/Lazy.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
1918
package org.openqa.selenium.concurrent;
2019

2120
import static java.util.Objects.requireNonNull;

java/src/org/openqa/selenium/concurrent/package-info.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
1918
@NullMarked
2019
package org.openqa.selenium.concurrent;
2120

java/src/org/openqa/selenium/devtools/DevToolsProvider.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import java.util.Optional;
2626
import java.util.function.Predicate;
2727
import java.util.logging.Logger;
28-
2928
import org.openqa.selenium.Capabilities;
3029
import org.openqa.selenium.concurrent.Lazy;
3130
import org.openqa.selenium.devtools.noop.NoOpCdpInfo;
@@ -51,7 +50,10 @@ public Class<HasDevTools> getDescribedInterface() {
5150
public HasDevTools getImplementation(Capabilities caps, ExecuteMethod executeMethod) {
5251
final Lazy<DevTools> devTools = lazy(() -> establishDevToolsConnection(caps));
5352

54-
LOG.log(INFO, "WebDriver augmented with DevTools interface; connection will not be verified until first use.");
53+
LOG.log(
54+
INFO,
55+
"WebDriver augmented with DevTools interface; connection will not be verified until first"
56+
+ " use.");
5557

5658
return new HasDevTools() {
5759
@Override

java/test/org/openqa/selenium/concurrent/LazyTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
1918
package org.openqa.selenium.concurrent;
2019

2120
import static org.assertj.core.api.Assertions.assertThat;

0 commit comments

Comments
 (0)