mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-251250 add quickfix for JavaDocs annotations for inspection "tag description is missing"
GitOrigin-RevId: 144bc690511b94af09184780d3621ff1e31b9068
This commit is contained in:
committed by
intellij-monorepo-bot
parent
27d30a9099
commit
f746cdbdc4
+11
@@ -0,0 +1,11 @@
|
||||
// "Remove '@exception IllegalArgumentException'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return blah-blah-blah
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Remove '@exception'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return blah-blah-blah
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
// "Remove '@param someInt'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @return blah-blah-blah
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
// "Remove '@return'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Remove '@throws IllegalArgumentException'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return blah-blah-blah
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Remove '@throws'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return blah-blah-blah
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
// "Remove '@exception IllegalArgumentException'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return blah-blah-blah
|
||||
* @exception<caret> IllegalArgumentException
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
// "Remove '@exception'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return blah-blah-blah
|
||||
* @exception<caret>
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Remove '@param someInt'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt<caret>
|
||||
* @return blah-blah-blah
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Remove '@return'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return<caret>
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
// "Remove '@throws IllegalArgumentException'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return blah-blah-blah
|
||||
* @throws<caret> IllegalArgumentException
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
// "Remove '@throws'" "true"
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param someInt blah-blah-blah
|
||||
* @return blah-blah-blah
|
||||
* @throws<caret>
|
||||
*/
|
||||
double foo(int someInt) {
|
||||
return 3.14;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user