Files
Nikita Eshkeev 03c771b5bc [codeInsight] IDEA-201714 Missing "fix all" for "Redundant throws clause"
This patch fixes the problem with the absent the "fix all" quick fix for
redundant throws clause inspection. It also does a major refactoring in
the both global and local redundant throws clause exceptions applying
modern code technics.

Signed-off-by: Nikita Eshkeev <nikita.eshkeev@jetbrains.com>

GitOrigin-RevId: 9336c9afd9a6c64b12d4e29f58e1c9da4f33e25e
2020-07-10 14:30:55 +00:00

13 lines
209 B
Java

// "Fix all 'Redundant 'throws' clause' problems in file" "true"
import java.io.*;
class A {
/**
* some description
* @throws IOException
*/
private void foo() throws <caret>IOException {
}
}