mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-20 01:39:27 +07:00
9addc5eaf7
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
9 lines
145 B
Java
9 lines
145 B
Java
// "Remove 'IOException' from 'f()' throws list" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
private void f() throws <caret>IOException {
|
|
}
|
|
}
|
|
|