don't erase generics when choosing a new class name with tab (IDEA-50622)

This commit is contained in:
peter.gromov
2010-11-25 19:35:42 +03:00
parent 92e5c27617
commit 07795c4a42
5 changed files with 40 additions and 5 deletions
@@ -0,0 +1,9 @@
public class TestClass {
public TestClass create() {
final int value = 1;
return new Xxx<caret><String>(value);
}
}
class Xxx { }