do not add exceptions to containing methods when element is selected inside lambda

This commit is contained in:
Anna Kozlova
2014-11-18 17:25:03 +01:00
parent f52ceb369b
commit 498e067158
3 changed files with 13 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
// "Add Runtime Exception(s) to Method Signature" "false"
class a {
int f() {
Runnable r = () -> {
throw new RuntimeException()<caret>;
}
}
}