Change Signature: Avoid explicit Unit return type

This commit is contained in:
Alexey Sedunov
2015-07-07 17:36:17 +03:00
parent eb7463ed81
commit a96bd546a1
7 changed files with 27 additions and 2 deletions
@@ -1,5 +1,5 @@
open class C: A() {
override fun foo(n: Int, s: String): Unit {
override fun foo(n: Int, s: String) {
}