fix gradle >8.12 compatibility (#53)

This commit is contained in:
rfresh2
2025-02-04 21:50:58 -08:00
committed by GitHub
parent 27b256d0ab
commit 75f2a021e3

View File

@@ -79,6 +79,10 @@ open class TransformingTask : Jar() {
}
}
override fun copy() {
// do nothing
}
private fun ClassNode.toByteArray(): ByteArray {
val writer = ClassWriter(0)
this.accept(writer)