mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
inline to anonymous: convert to lambda when applicable (IDEA-173821)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
import java.util.*;
|
||||
|
||||
class Main {
|
||||
|
||||
void sort(List<String> scores) {
|
||||
scores.sort((s1, s2) -> 0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user