mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
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
13 lines
209 B
Java
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 {
|
|
}
|
|
}
|
|
|