mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
fix visibility
GitOrigin-RevId: 33239875fc007658b431f643fa906b8ae1e7b195
This commit is contained in:
committed by
intellij-monorepo-bot
parent
7f5c1ca4ef
commit
9f4ee97723
@@ -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.ide.structureView.impl.java;
|
||||
|
||||
import com.intellij.ide.util.treeView.smartTree.SortableTreeElement;
|
||||
@@ -6,13 +6,15 @@ import com.intellij.openapi.project.DumbService;
|
||||
import com.intellij.openapi.util.text.StringUtil;
|
||||
import com.intellij.psi.PsiSubstitutor;
|
||||
import com.intellij.psi.PsiVariable;
|
||||
import org.jetbrains.annotations.ApiStatus;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import static com.intellij.psi.util.PsiFormatUtil.formatVariable;
|
||||
import static com.intellij.psi.util.PsiFormatUtilBase.*;
|
||||
|
||||
abstract class JavaVariableBaseTreeElement<T extends PsiVariable> extends JavaClassTreeElementBase<T> implements SortableTreeElement {
|
||||
@ApiStatus.Internal
|
||||
public abstract class JavaVariableBaseTreeElement<T extends PsiVariable> extends JavaClassTreeElementBase<T> implements SortableTreeElement {
|
||||
protected JavaVariableBaseTreeElement(boolean isInherited, T element) {
|
||||
super(isInherited, element);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user