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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user