TimeInStaticInitializer
Accessing the current time in a static initialiser captures the time at class loading, which is rarely desirable.
Suppression
Suppress false positives by adding the suppression annotation @SuppressWarnings("TimeInStaticInitializer")
to the enclosing element.