mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
fix ThisPassedAsArgumentVisitor visibility
GitOrigin-RevId: 5e1484bb0362aa97cf1265f3eb4d2e9c6f9e3d0a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
3deaff7cf6
commit
f97821a456
@@ -1,10 +1,12 @@
|
||||
// Copyright 2000-2023 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.siyeh.ig.bugs;
|
||||
|
||||
import com.intellij.psi.*;
|
||||
import org.jetbrains.annotations.ApiStatus;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
class ThisPassedAsArgumentVisitor extends JavaRecursiveElementWalkingVisitor {
|
||||
@ApiStatus.Internal
|
||||
public final class ThisPassedAsArgumentVisitor extends JavaRecursiveElementWalkingVisitor {
|
||||
private boolean passed;
|
||||
|
||||
@Override
|
||||
|
||||
@@ -225,5 +225,6 @@ public final class JavaTreeGenerator implements TreeGenerator {
|
||||
|
||||
@ApiStatus.Internal
|
||||
public static final Key<PsiClass> REFERENCED_CLASS_KEY = Key.create("REFERENCED_CLASS_KEY");
|
||||
static final Key<PsiMember> REFERENCED_MEMBER_KEY = Key.create("REFERENCED_MEMBER_KEY");
|
||||
@ApiStatus.Internal
|
||||
public static final Key<PsiMember> REFERENCED_MEMBER_KEY = Key.create("REFERENCED_MEMBER_KEY");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user