IDEA-42378 Live template expansion: existing identifier is converted to lower case

This commit is contained in:
peter
2012-07-30 14:45:50 +02:00
parent 5f0d4c92df
commit 979284c04d
6 changed files with 33 additions and 12 deletions
@@ -0,0 +1,8 @@
import java.io.File;
class Foo {
{
File file = new File("some.txt");
System.out.println("file = " + File.<caret>);
}
}