mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
[completion] IJPL-207762 nullability for LookupElement
GitOrigin-RevId: 31357e8a2d4e661cbc91a5642fe689cd3179a7e5
This commit is contained in:
committed by
intellij-monorepo-bot
parent
27a2d0c1b9
commit
6ef13aa11e
+1
-1
@@ -40,7 +40,7 @@ public class ChainCompletionNewVariableLookupElement extends LookupElement {
|
||||
}
|
||||
|
||||
@Override
|
||||
public AutoCompletionPolicy getAutoCompletionPolicy() {
|
||||
public @NotNull AutoCompletionPolicy getAutoCompletionPolicy() {
|
||||
return AutoCompletionPolicy.NEVER_AUTOCOMPLETE;
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.intellij.compiler.chainsSearch.completion.lookup;
|
||||
|
||||
import com.intellij.codeInsight.lookup.AutoCompletionPolicy;
|
||||
@@ -20,7 +20,7 @@ public final class JavaRelevantChainLookupElement extends LookupElementDecorator
|
||||
}
|
||||
|
||||
@Override
|
||||
public AutoCompletionPolicy getAutoCompletionPolicy() {
|
||||
public @NotNull AutoCompletionPolicy getAutoCompletionPolicy() {
|
||||
return AutoCompletionPolicy.NEVER_AUTOCOMPLETE;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user