mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
10 lines
208 B
Java
10 lines
208 B
Java
// "Add exception to method signature" "false"
|
|
class C {
|
|
|
|
public static void main(String[] args) throws InterruptedException {
|
|
new Thread(( ) -> {
|
|
Thread.sl<caret>eep(2000);
|
|
}).start();
|
|
}
|
|
}
|