mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
inspection to highlight and convert pseudo-functional code (like guava Iterables) to java 8 api. initial version
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import com.google.common.collect.Iterables;
|
||||
|
||||
import java.lang.String;
|
||||
import java.util.Collections;
|
||||
|
||||
class c {
|
||||
void m() {
|
||||
Collections.emptyList().stream().anyMatch(in -> false);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user