mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
don't erase constructor arguments when choosing a new class name with tab (IDEA-61806)
This commit is contained in:
+16
@@ -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 {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user