inspections: more clear presentation for unused declarations

GitOrigin-RevId: c60846f8be2cc4e33fa525e6bc39123b3d1e89b3
This commit is contained in:
Bas Leijdekkers
2024-06-03 17:13:22 +02:00
committed by intellij-monorepo-bot
parent a4bbeea5dc
commit 7225738dae
6 changed files with 111 additions and 122 deletions

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.codeInspection.reference;
import org.jetbrains.annotations.NotNull;
@@ -29,4 +29,6 @@ public interface RefFunctionalExpression extends RefJavaElement, RefOverridable
* Note that a method reference always contains a body.
*/
boolean hasEmptyBody();
boolean isMethodReference();
}