extract method: add default modifier when extracted into interface (java 8 only)

This commit is contained in:
anna
2012-12-17 21:45:39 +01:00
parent 746ed966f9
commit 3afa9c526d
4 changed files with 21 additions and 0 deletions
@@ -0,0 +1,5 @@
interface I {
default void foo () {
<selection>System.out.println("hello");</selection>
}
}