inspection to highlight and convert pseudo-functional code (like guava Iterables) to java 8 api. initial version

This commit is contained in:
Dmitry Batkovich
2015-03-12 15:27:19 +03:00
parent 710104958a
commit f6ccae5153
25 changed files with 1072 additions and 92 deletions
@@ -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);
}
}