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
mrousavy authored Apr 11, 2022
2 parents 2ab1353 + 5b1450f commit 7e1f7bb
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 7e1f7bb

Please sign in to comment.