cs: all javadoc tags but the last contains tailing \n, delete child remove \n as well -> then delete last tag add new tag leads to \n removal (IDEA-59501)

This commit is contained in:
anna
2010-10-12 19:25:39 +04:00
parent 6929cf714f
commit 3585f66c1a
5 changed files with 39 additions and 6 deletions
@@ -0,0 +1,14 @@
class X {
/**
* Has a method called {@link #mymethod(int, int)}.
*/
public class TestRefactorLink {
/**
* @return nothing
* @param y yparam
* @param z zparam
*/
public void <caret>mymethod(int y, int z) { }
}
}