diff options
| -rw-r--r-- | build.gradle.kts | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index e03158212..cbd8eda3a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -444,15 +444,5 @@ abstract class ShotApplicationJarProcessor @Inject constructor(private val shots override fun getName(): String = "Shots" - private class ShotSpec(val shots: Shots) : MinecraftJarProcessor.Spec, Serializable { - override fun equals(other: Any?): Boolean { - if (this === other) return true - if (other !is ShotSpec) return false - return shots == other.shots - } - - override fun hashCode(): Int { - return shots.hashCode() - } - } + private data class ShotSpec(val shots: Shots) : MinecraftJarProcessor.Spec, Serializable } |
