do not mix PsiImmediateClassType and PsiReferenceClassType: presentable name for ref type is calc based on reference name only (IDEA-56135)

This commit is contained in:
anna
2010-11-10 19:02:24 +03:00
parent c5a3b5379b
commit 92b0210e9f
3 changed files with 21 additions and 3 deletions
@@ -0,0 +1,9 @@
// "Change 'implements b' to 'extends b'" "true"
class a extends b<C.D> {
}
class b<T> {}
class C {
static class D {}
}
@@ -0,0 +1,9 @@
// "Change 'implements b' to 'extends b'" "true"
class a implements <caret>b<C.D> {
}
class b<T> {}
class C {
static class D {}
}