Cleanup 191 extension files (KTI-240)

This commit is contained in:
Yunir Salimzyanov
2020-06-01 16:11:14 +03:00
parent 7ab7ca5ff0
commit 3b9000cc0c
93 changed files with 0 additions and 6878 deletions
@@ -1,5 +0,0 @@
// "Add constructor parameters from DataInputStream(InputStream!)" "true"
import java.io.DataInputStream
import java.io.InputStream
class C(`in`: InputStream?) : DataInputStream(`in`)
@@ -1,5 +0,0 @@
// "Add constructor parameters from ArrayList((MutableCollection<out String!>..Collection<String!>?))" "true"
// ACTION: Add constructor parameters from ArrayList(Int)
import java.util.ArrayList
class C(c: MutableCollection<out String>?) : ArrayList<String>(c)
@@ -1,12 +0,0 @@
// "Surround with lambda" "false"
// ERROR: Type mismatch: inferred type is Object but () -> String was expected
// ACTION: Annotate constructor 'Object'...
// ACTION: Change parameter 'block' type of function 'str' to 'Object'
// ACTION: Create function 'str'
// ACTION: Edit method contract of 'Object'
// ACTION: Introduce import alias
fun fn() {
str(<caret>Object())
}
fun str(block: () -> String) {}