leave foreign params untouched (IDEA-119700)

This commit is contained in:
Anna Kozlova
2014-05-26 18:07:52 +04:00
parent 6c8c34c140
commit 8a80f671c2
5 changed files with 53 additions and 1 deletions
@@ -0,0 +1,13 @@
class X {
/**
* Has a method called {@link #mymethod(boolean, boolean)}.
*/
public class TestRefactorLink {
/**
* @param x aparam
* @param b
*/
public void mymethod(boolean a, boolean b) { }
}
}