mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 11:44:39 +07:00
GitOrigin-RevId: 7f211c1b5bca9bdcb1f5281cd6717ad58f3751c3
17 lines
555 B
Java
17 lines
555 B
Java
import com.intellij.psi.PsiElement;
|
|
import com.intellij.psi.PsiReference;
|
|
import com.intellij.openapi.project.Project;
|
|
|
|
public class Ext {
|
|
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 <warning descr="Do not use Project as a field in extension">p</warning>;
|
|
final Project pf;
|
|
public Ext() {
|
|
super();
|
|
pe = null;
|
|
r =null;
|
|
p = pf = null;
|
|
}
|
|
}
|