mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
do not insert initial method comments in delegate with default param value (IDEA-81106)
This commit is contained in:
+13
@@ -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;
|
||||
}
|
||||
}
|
||||
+9
@@ -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