mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
Rename in Javadoc fixed
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class ConflictWithJavadocTag {
|
||||
/**
|
||||
* Receives some param.
|
||||
* @param param some param
|
||||
*/
|
||||
public void my(int <caret>param) {
|
||||
System.out.println("param=" + param); // print param
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
public class ConflictWithJavadocTag {
|
||||
/**
|
||||
* Receives some i.
|
||||
* @param i some i
|
||||
*/
|
||||
public void my(int i) {
|
||||
System.out.println("i=" + i); // print i
|
||||
}
|
||||
}
|
||||
@@ -38,6 +38,10 @@ public class RenameLocalTest extends LightCodeInsightTestCase {
|
||||
doTest("f");
|
||||
}
|
||||
|
||||
public void testConflictWithJavadocTag() throws Exception {
|
||||
doTest("i");
|
||||
}
|
||||
|
||||
private void doTest(final String newName) throws Exception {
|
||||
configureByFile(BASE_PATH + getTestName(false) + ".java");
|
||||
PsiElement element = TargetElementUtilBase
|
||||
|
||||
Reference in New Issue
Block a user