Fix accidental usage of ASM from jdk.internal in jvm-debugger

Similarly to ee6586fe4f.
This commit is contained in:
Alexander Udalov
2021-05-17 16:40:37 +02:00
parent 99cdb86145
commit 6581d222cd
@@ -13,17 +13,17 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
@file:Suppress("JAVA_MODULE_DOES_NOT_EXPORT_PACKAGE")
package org.jetbrains.kotlin.idea.debugger.evaluate.classLoading package org.jetbrains.kotlin.idea.debugger.evaluate.classLoading
import com.sun.jdi.ArrayReference import com.sun.jdi.ArrayReference
import com.sun.jdi.ArrayType import com.sun.jdi.ArrayType
import com.sun.jdi.ClassLoaderReference import com.sun.jdi.ClassLoaderReference
import com.sun.jdi.Value import com.sun.jdi.Value
import jdk.internal.org.objectweb.asm.Opcodes
import org.jetbrains.kotlin.idea.debugger.evaluate.ExecutionContext import org.jetbrains.kotlin.idea.debugger.evaluate.ExecutionContext
import org.jetbrains.org.objectweb.asm.ClassReader import org.jetbrains.org.objectweb.asm.ClassReader
import org.jetbrains.org.objectweb.asm.Label import org.jetbrains.org.objectweb.asm.Label
import org.jetbrains.org.objectweb.asm.Opcodes
import org.jetbrains.org.objectweb.asm.tree.* import org.jetbrains.org.objectweb.asm.tree.*
import kotlin.math.min import kotlin.math.min
@@ -126,4 +126,4 @@ interface ClassLoadingAdapter {
return reference return reference
} }
} }