Skip to content

Commit

Permalink
Remove unnecessary Serializable declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Jul 14, 2024
1 parent 6f5f5f1 commit 4002f9b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package io.github.sgtsilvio.oci.registry

import java.io.Serializable

/**
* @author Silvio Giebl
*/
internal data class OciDigest(val algorithm: String, val hash: String) : Serializable {
internal data class OciDigest(val algorithm: String, val hash: String) {
override fun toString() = "$algorithm:$hash"
}

Expand Down

0 comments on commit 4002f9b

Please sign in to comment.