mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
do not insert initial method comments in delegate with default param value (IDEA-81106)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// "Generate delegated method with default parameter value" "true"
|
||||
class Test {
|
||||
int foo() {
|
||||
return foo();
|
||||
}
|
||||
|
||||
int foo(int ii){
|
||||
//comment1
|
||||
System.out.println("");
|
||||
//comment2
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Generate delegated method with default parameter value" "true"
|
||||
class Test {
|
||||
int foo(int i<caret>i){
|
||||
//comment1
|
||||
System.out.println("");
|
||||
//comment2
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user