mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
15 lines
343 B
Java
15 lines
343 B
Java
// "Remove 'Exception' from 'f()' throws list" "true-preview"
|
|
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
|
|
class A {
|
|
/**
|
|
* @since 2020.3
|
|
* @author me
|
|
* @throws FileNotFoundException file not found
|
|
* @throws IOException IO exception
|
|
*/
|
|
void f() throws /* 1 */ /* 2 */ /* 3 */ IOException /* 4 */ {}
|
|
}
|