Drop `Util#wait`
This commit is contained in:
parent
7b9d8829da
commit
19d7b5c65d
|
@ -73,7 +73,12 @@ public class DynamicConfigurationManager<T> {
|
||||||
public T getConfiguration() {
|
public T getConfiguration() {
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
while (!initialized) {
|
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();
|
return configuration.get();
|
||||||
|
|
|
@ -117,14 +117,6 @@ public class Util {
|
||||||
} catch (InterruptedException ie) {}
|
} catch (InterruptedException ie) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void wait(Object object) {
|
|
||||||
try {
|
|
||||||
object.wait();
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
throw new AssertionError(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static long todayInMillis() {
|
public static long todayInMillis() {
|
||||||
return todayInMillis(Clock.systemUTC());
|
return todayInMillis(Clock.systemUTC());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue