Replace internal JDK reference with ASM reference. (#1281)

This commit is contained in:
Chris Rankin 2018-07-18 16:32:16 +01:00 committed by GitHub
parent 1b05ccd397
commit 099756c4c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,10 +10,10 @@
package net.corda.serialization.internal.carpenter
import jdk.internal.org.objectweb.asm.Opcodes.*
import net.corda.core.DeleteForDJVM
import org.objectweb.asm.ClassWriter
import org.objectweb.asm.MethodVisitor
import org.objectweb.asm.Opcodes.*
import org.objectweb.asm.Type
abstract class Field(val field: Class<out Any?>) {