removed explicit type arguments

from delegation tests where possible
This commit is contained in:
Svetlana Isakova
2013-06-05 20:33:21 +04:00
parent ca88a01e1d
commit fc0077cf9b
2 changed files with 9 additions and 9 deletions
@@ -25,7 +25,7 @@ class DelegationTest(): DelegationTestBase() {
}
public class TestNotNullVar<T>(val a1: String, val b1: T): WithBox {
var a: String by Delegates.notNull<String>()
var a: String by Delegates.notNull()
var b by Delegates.notNull<T>()
override fun box(): String {