introduce field: extract error expression on class level ( IDEA-41570 )

This commit is contained in:
anna
2010-06-01 18:30:49 +04:00
parent 33fdaf1154
commit 941142b346
18 changed files with 140 additions and 14 deletions

View File

@@ -0,0 +1,7 @@
class Test {
<selection>Class.forName(Test.class.getName)</selection>
void foo() {
Class clazz = Class.forName(Test.class.getName);
}
}