mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
change signature: preserve param javadoc when name was changed (IDEA-87521)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
class X {
|
||||
|
||||
/**
|
||||
* Has a method called {@link #mymethod(int)}.
|
||||
*/
|
||||
public class TestRefactorLink {
|
||||
/**
|
||||
* @return nothing
|
||||
* @param y yparam
|
||||
*/
|
||||
public void <caret>mymethod(int y) { }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
class X {
|
||||
|
||||
/**
|
||||
* Has a method called {@link #mymethod(boolean)}.
|
||||
*/
|
||||
public class TestRefactorLink {
|
||||
/**
|
||||
* @return nothing
|
||||
* @param z yparam
|
||||
*/
|
||||
public void mymethod(boolean z) { }
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class Test {
|
||||
/**
|
||||
* foo comment
|
||||
* @param param
|
||||
* @param param long description
|
||||
*/
|
||||
void foo(Param param) {
|
||||
bar(param.getS());
|
||||
|
||||
Reference in New Issue
Block a user