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

@ -73,7 +73,12 @@ public class DynamicConfigurationManager<T> {
public T getConfiguration() {
synchronized (this) {
while (!initialized) {
Util.wait(this);
try {
this.wait();
} catch (final InterruptedException e) {
logger.warn("Interrupted while waiting for initial configuration", e);
throw new RuntimeException(e);
}
}
}
return configuration.get();

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());
}