mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-70492 Javadoc Smart Complete Statement: Improve processing in case of the last parameter
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Foo {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param i desc
|
||||
* @param j desc<caret>
|
||||
*/
|
||||
void test(int i, int j) {
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class Foo {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param i desc
|
||||
* @param j desc<caret>
|
||||
* @return
|
||||
*/
|
||||
int test(int i, int j) {
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class Foo {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param i desc
|
||||
* @param j desc
|
||||
* @return<caret>
|
||||
*/
|
||||
int test(int i, int j) {
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class Foo {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param i desc
|
||||
* @param j desc
|
||||
* <caret>
|
||||
*/
|
||||
void test(int i, int j) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user