java 8: suggest to add method body for default methods in interface

This commit is contained in:
Anna Kozlova
2013-06-25 21:03:07 +04:00
parent a00aac060c
commit e9924f79c4
4 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
// "Add Method Body" "true"
interface a {
default String f() {
<selection>return null;</selection>
}
}

View File

@@ -0,0 +1,5 @@
// "Add Method Body" "true"
interface a {
default <caret>String f();
}