From 1a0c3dfaa6c8b97b186dce0f2a17eb67868fa2db Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Mon, 17 Dec 2018 09:44:52 +0100 Subject: [PATCH] Use last ASM version to read binaries #KT-28798 Fixed --- .../kotlin/load/java/structure/impl/classFiles/commonMixins.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/frontend.java/src/org/jetbrains/kotlin/load/java/structure/impl/classFiles/commonMixins.kt b/compiler/frontend.java/src/org/jetbrains/kotlin/load/java/structure/impl/classFiles/commonMixins.kt index 53818be036a..64fcb8b9b9e 100644 --- a/compiler/frontend.java/src/org/jetbrains/kotlin/load/java/structure/impl/classFiles/commonMixins.kt +++ b/compiler/frontend.java/src/org/jetbrains/kotlin/load/java/structure/impl/classFiles/commonMixins.kt @@ -23,7 +23,7 @@ import org.jetbrains.kotlin.load.java.structure.JavaModifierListOwner import org.jetbrains.kotlin.load.java.structure.MapBasedJavaAnnotationOwner import org.jetbrains.org.objectweb.asm.Opcodes -internal val ASM_API_VERSION_FOR_CLASS_READING = Opcodes.ASM5 +internal const val ASM_API_VERSION_FOR_CLASS_READING = Opcodes.API_VERSION internal interface BinaryJavaModifierListOwner : JavaModifierListOwner, MapBasedJavaAnnotationOwner { val access: Int