Skip to content

Commit

Permalink
Merge 46f0a47 into fae19fa
Browse files Browse the repository at this point in the history
  • Loading branch information
veyndan committed Jun 12, 2023
2 parents fae19fa + 46f0a47 commit 6174fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class CombinedLoadStates(

override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
if (other == null || this::class != other::class) return false

other as CombinedLoadStates

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ internal data class TransformablePage<T : Any>(
// for IntArray.
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
if (other == null || this::class != other::class) return false

other as TransformablePage<*>

Expand Down

0 comments on commit 6174fc5

Please sign in to comment.