mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
safe delete method parameter: change method signature in javadoc accordingly (IDEA-57032)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class Super {
|
||||
void m1(String p2) {}
|
||||
|
||||
/**
|
||||
* @see #m1( String)
|
||||
*/
|
||||
void m2() {}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
class Super {
|
||||
void m1(String p<caret>1, String p2) {}
|
||||
|
||||
/**
|
||||
* @see #m1(String, String)
|
||||
*/
|
||||
void m2() {}
|
||||
}
|
||||
Reference in New Issue
Block a user