mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +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) {}
|
|
} |