Drop everything related to lambda syntax deprecation

This commit is contained in:
Denis Zharkov
2015-09-23 20:10:35 +03:00
parent 73799e2c3c
commit c6377a0664
35 changed files with 0 additions and 502 deletions
-2
View File
@@ -2,8 +2,6 @@ import pack.oldFun1
import pack.oldFun2 // should not be removed for non-deprecated overload used
import pack.oldFun3
val f = { (a: Int, b: Int) -> a + b }
class A private()
val x = fun foo(x: String) { }
-2
View File
@@ -1,8 +1,6 @@
import pack.bar
import pack.oldFun2 // should not be removed for non-deprecated overload used
val f = { a: Int, b: Int -> a + b }
class A private constructor()
val x = fun(x: String) { }