'change language level' functionality moved to JavaProjectModelModificationService, test on IncreaseLanguageLevelFix added

This commit is contained in:
nik
2015-09-16 19:17:35 +03:00
parent 9a4a6568ea
commit 6a479aeef7
9 changed files with 138 additions and 36 deletions

View File

@@ -0,0 +1,7 @@
public class Lambda {
void m() {
Runnable r = <caret>() -> x();
}
void x() {}
}