Skip to content

Commit 19d863d

Browse files
committed
[java] Deleting unused private methods
1 parent e349318 commit 19d863d

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

java/client/src/org/openqa/selenium/lift/WebDriverTestContext.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,4 @@ protected RuntimeException timeoutException(String message, Throwable lastExcept
153153
};
154154
wait.until(elementsDisplayedPredicate);
155155
}
156-
157-
private static long millisToSeconds(final long timeoutMillis) {
158-
return ceiling(((double) timeoutMillis) / 1000);
159-
}
160-
161-
private static long ceiling(final double value) {
162-
final long asLong = (long) value;
163-
final int additional = value - asLong > 0 ? 1 : 0;
164-
return asLong + additional;
165-
}
166-
167156
}

0 commit comments

Comments
 (0)