change signature: do not multiple javadocs (IDEA-94465)

This commit is contained in:
anna
2012-11-09 17:20:01 +01:00
parent 7b2151de3b
commit 0a2b36f3d7
4 changed files with 34 additions and 2 deletions
@@ -0,0 +1,13 @@
class X {
/**
* Has a method called {@link #mymethod(boolean, boolean)}.
*/
public class TestRefactorLink {
/**
* @param z
* @param a aparam
*/
public void mymethod(boolean z, boolean a) { }
}
}