mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
17 lines
536 B
Java
17 lines
536 B
Java
import com.intellij.openapi.project.Project;
|
|
import com.intellij.psi.PsiElement;
|
|
import com.intellij.psi.PsiReference;
|
|
|
|
public class ProjectConfigurable {
|
|
final PsiElement <warning descr="Potential memory leak: don't hold PsiElement, use SmartPsiElementPointer instead">pe</warning>;
|
|
final PsiReference <warning descr="Do not use PsiReference as a field in extension">r</warning>;
|
|
Project p;
|
|
final Project pf;
|
|
public ProjectConfigurable(Project project) {
|
|
super();
|
|
pe = null;
|
|
r = null;
|
|
p = pf = project;
|
|
}
|
|
}
|