redundant throws fix should remove javadoc tag too (IDEA-185105)

This commit is contained in:
Dmitry Batkovich
2018-01-18 15:05:24 +03:00
parent 9539926b4b
commit cc8d990786
6 changed files with 72 additions and 39 deletions
@@ -0,0 +1,12 @@
// "Remove 'IOException' from 'foo' throws list" "true"
import java.io.*;
class A {
/**
* some description
* @throws IOException
*/
private void foo() throws <caret>IOException {
}
}