don't erase constructor arguments when choosing a new class name with tab (IDEA-61806)

This commit is contained in:
peter.gromov
2010-11-25 19:35:39 +03:00
parent 77fb3ded22
commit a299f87b97
6 changed files with 80 additions and 13 deletions
@@ -0,0 +1,16 @@
public class TestClass {
public TestClass create() {
final int value = 1;
return new Xxx<caret>(value);
}
}
class Xxx {
private Xxx(String x) {
}
class Yyy {
}
}