Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
Quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Bueide committed Sep 10, 2021
1 parent c54c28f commit 9963d2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "org.chiachat"
version = "1.0.2"
version = "1.0.3"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ data class Bech32Data(
val data: ByteArray
) {
override fun equals(other: Any?): Boolean {
if (other == null) return false
if (this === other) return true
if (javaClass != other?.javaClass) return false
if (this::class != other::class) return false

other as Bech32Data

Expand Down

0 comments on commit 9963d2e

Please sign in to comment.