mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
AtomicNotNullLazyValue#createValue overrides NotNullLazyValue#createValue intentionally (following IDEA-CR-13011)
This commit is contained in:
@@ -46,8 +46,9 @@ public abstract class AtomicNotNullLazyValue<T> extends NotNullLazyValue<T> {
|
||||
return value;
|
||||
}
|
||||
|
||||
@SuppressWarnings("MethodOverridesStaticMethodOfSuperclass")
|
||||
@NotNull
|
||||
public static <T> AtomicNotNullLazyValue<T> create(@NotNull final NotNullFactory<T> value) {
|
||||
public static <T> AtomicNotNullLazyValue<T> createValue(@NotNull final NotNullFactory<T> value) {
|
||||
return new AtomicNotNullLazyValue<T>() {
|
||||
@NotNull
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user