Skip to content

Commit

Permalink
fix gradle >8.12 compatibility (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfresh2 authored Feb 5, 2025
1 parent 27b256d commit 75f2a02
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/kotlin/dev/architectury/plugin/TransformingTask.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 75f2a02

Please sign in to comment.