mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 72e2cbc6c1927af08401835f7e9ee4814ac26dea
8 lines
159 B
Java
8 lines
159 B
Java
// "Add 'throws RuntimeException' to method signature" "false"
|
|
class a {
|
|
int f() throws RuntimeException{
|
|
throw new RuntimeException()<caret>;
|
|
}
|
|
}
|
|
|