Skip to content

Commit

Permalink
fix: Update BlurhashImageView Context argument to be non-nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
ldabiralai committed Mar 11, 2022
1 parent 60a291d commit 5b1450f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ internal class BlurhashCache(private val _blurhash: String?, private val _decode

const val USE_COSINES_CACHE = true

class BlurhashImageView(context: Context?): androidx.appcompat.widget.AppCompatImageView(context) {
class BlurhashImageView(context: Context): androidx.appcompat.widget.AppCompatImageView(context) {
var blurhash: String? = null
var decodeWidth = 32
var decodeHeight = 32
Expand Down

0 comments on commit 5b1450f

Please sign in to comment.