mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
13 lines
270 B
Java
13 lines
270 B
Java
|
|
import java.util.concurrent.ExecutorService;
|
|
|
|
class Test {
|
|
private void m(ExecutorService service, int i) {
|
|
service.submit(() -> {
|
|
switch (i) {
|
|
default:
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
} |