mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-119630 Live template broke in IDEA 13
This commit is contained in:
@@ -58,7 +58,7 @@ public class ClassNameMacro extends Macro {
|
||||
}
|
||||
|
||||
if (aClass == null) return null;
|
||||
String qname = aClass.getQualifiedName();
|
||||
String qname = aClass.getName();
|
||||
return qname == null ? null : new TextResult(qname);
|
||||
}
|
||||
|
||||
|
||||
@@ -602,7 +602,7 @@ class Outer {
|
||||
}
|
||||
}'''
|
||||
myFixture.type('\t')
|
||||
assert myFixture.editor.document.text.contains("Outer.Inner.foo")
|
||||
assert myFixture.editor.document.text.contains("\"Inner.foo")
|
||||
}
|
||||
|
||||
public void "test do not strip type argument containing class"() {
|
||||
|
||||
Reference in New Issue
Block a user