Drop Util#wait

This commit is contained in:
Jon Chambers
2023-10-19 19:08:35 -04:00
committed by Jon Chambers
parent 7b9d8829da
commit 19d7b5c65d
2 changed files with 6 additions and 9 deletions

View File

@@ -117,14 +117,6 @@ public class Util {
} catch (InterruptedException ie) {}
}
public static void wait(Object object) {
try {
object.wait();
} catch (InterruptedException e) {
throw new AssertionError(e);
}
}
public static long todayInMillis() {
return todayInMillis(Clock.systemUTC());
}