File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
binary-compatibility-validator/src/main/kotlin/kotlinx/coroutines/experimental/tools Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -5,16 +5,6 @@ import org.objectweb.asm.tree.*
5
5
import java.io.*
6
6
import java.util.jar.*
7
7
8
- fun main (args : Array <String >) {
9
- val src = args.firstOrNull() ? : " kotlinx-coroutines-core"
10
- println (src)
11
- println (" ------------------\n " )
12
- val jarFile = " core/$src /build/libs/$src -0.22.5-SNAPSHOT.jar"
13
- val visibilities = readKotlinVisibilities(File (""" core/$src /build/visibilities.json""" ))
14
- getBinaryAPI(JarFile (jarFile), visibilities).filterOutNonPublic().dump()
15
- }
16
-
17
-
18
8
fun JarFile.classEntries () = entries().asSequence().filter {
19
9
! it.isDirectory && it.name.endsWith(" .class" ) && ! it.name.startsWith(" META-INF/" )
20
10
}
You can’t perform that action at this time.
0 commit comments