mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
cleanup: notnull
GitOrigin-RevId: f607e979f0a4af927325fe05a40fb289a9f5a3ac
This commit is contained in:
committed by
intellij-monorepo-bot
parent
b005a0baec
commit
96f3c41b14
@@ -456,12 +456,12 @@ public class EmptyXmlTag implements XmlTag {
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> T getCopyableUserData(Key<T> key) {
|
||||
public <T> T getCopyableUserData(@NotNull Key<T> key) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> void putCopyableUserData(Key<T> key, @Nullable T value) {
|
||||
public <T> void putCopyableUserData(@NotNull Key<T> key, @Nullable T value) {
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -327,12 +327,12 @@ public class DomReferenceInjectorTest extends DomHardCoreTestCase {
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> T getCopyableUserData(Key<T> key) {
|
||||
public <T> T getCopyableUserData(@NotNull Key<T> key) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> void putCopyableUserData(Key<T> key, T value) {
|
||||
public <T> void putCopyableUserData(@NotNull Key<T> key, T value) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user