Create Function From Usage: Add empty lines when inserting new function

This commit is contained in:
Alexey Sedunov
2014-09-26 19:31:12 +04:00
parent afd8809ff5
commit ff29e581db
41 changed files with 90 additions and 36 deletions
@@ -3,6 +3,7 @@ class FooIterator<T> {
fun next(): Int {
throw Exception("not implemented")
}
fun hasNext(): Boolean {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
@@ -3,6 +3,7 @@ class FooIterator<T> {
fun next(): T {
throw Exception("not implemented")
}
fun hasNext(): Boolean {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}