From 35116696b23113c275029d52210552b55839ccc0 Mon Sep 17 00:00:00 2001 From: Roman Golyshev Date: Wed, 31 Aug 2022 12:41:44 +0000 Subject: [PATCH] Add missing `@Override` annotation to `KtParameter` --- compiler/psi/src/org/jetbrains/kotlin/psi/KtParameter.java | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/psi/src/org/jetbrains/kotlin/psi/KtParameter.java b/compiler/psi/src/org/jetbrains/kotlin/psi/KtParameter.java index 9156ebbbab1..5dabef86713 100644 --- a/compiler/psi/src/org/jetbrains/kotlin/psi/KtParameter.java +++ b/compiler/psi/src/org/jetbrains/kotlin/psi/KtParameter.java @@ -112,6 +112,7 @@ public class KtParameter extends KtNamedDeclarationStub imp return getValOrVarKeyword() != null; } + @Override @Nullable public PsiElement getValOrVarKeyword() { KotlinParameterStub stub = getStub();