mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
10 lines
207 B
Java
10 lines
207 B
Java
// "Replace with lambda" "true-preview"
|
|
class Test {
|
|
String c = null;
|
|
|
|
public void main(String[] args){
|
|
invokeLater(() -> c.substring(0).toString());
|
|
}
|
|
|
|
public void invokeLater(Runnable r) {}
|
|
} |