mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
EA-31069 - assert: RefactoringUtil.getChainedConstructor
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
// "Add constructor parameter" "true"
|
||||
public enum La {
|
||||
;
|
||||
private String s;
|
||||
|
||||
private La(String s) {
|
||||
this.s = s;
|
||||
}
|
||||
|
||||
private La(int a, String s);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// "Add constructor parameter" "true"
|
||||
public enum La {
|
||||
;
|
||||
private String s<caret>;
|
||||
|
||||
private La() {
|
||||
}
|
||||
|
||||
private La(int a);
|
||||
}
|
||||
Reference in New Issue
Block a user