preserve javadoc refs during inplace rename (IDEA-85817)

This commit is contained in:
Anna Kozlova
2012-05-15 15:05:50 +04:00
parent 7ca6a15de8
commit dde04a403d
9 changed files with 34 additions and 19 deletions
@@ -0,0 +1,11 @@
public class RefactorBug {
public static void som<caret>ething(int a, float b) {
}
/**
* @see #something(int, float)
*/
public static void somethingElse() {
}
}
@@ -0,0 +1,11 @@
public class RefactorBug {
public static void bar(int a, float b) {
}
/**
* @see #bar(int, float)
*/
public static void somethingElse() {
}
}