Skip to content

Commit cbe3da3

Browse files
committed
fix formatting (too long lines)
1 parent 25afc1b commit cbe3da3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/main/java/io/appium/java_client/AppiumFluentWait.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ public AppiumFluentWait<T> withPollingStrategy(Function<IterationInfo, Duration>
216216
return performIteration(isTrue, start, end);
217217
}
218218

219-
private <V extends @Nullable Object> @NonNull V performIteration(Function<? super T, ? extends V> isTrue, Instant start, Instant end) {
219+
private <V extends @Nullable Object> @NonNull V performIteration(
220+
Function<? super T, ? extends V> isTrue, Instant start, Instant end) {
220221
var iterationNumber = 1;
221222
Throwable lastException;
222223

@@ -250,7 +251,8 @@ public AppiumFluentWait<T> withPollingStrategy(Function<IterationInfo, Duration>
250251
}
251252
}
252253

253-
private <V> void handleTimeoutException(@Nullable Throwable lastException, Function<? super T, ? extends V> isTrue) {
254+
private <V> void handleTimeoutException(
255+
@Nullable Throwable lastException, Function<? super T, ? extends V> isTrue) {
254256
var message = Optional.of(getMessageSupplier())
255257
.map(Supplier::get)
256258
.orElseGet(() -> "waiting for " + isTrue);

0 commit comments

Comments
 (0)