Skip to content

Commit 7e1f7bb

Browse files
authored
fix: Update BlurhashImageView Context argument to be non-nullable
2 parents 2ab1353 + 5b1450f commit 7e1f7bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/mrousavy/blurhash/BlurhashImageView.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ internal class BlurhashCache(private val _blurhash: String?, private val _decode
3636

3737
const val USE_COSINES_CACHE = true
3838

39-
class BlurhashImageView(context: Context?): androidx.appcompat.widget.AppCompatImageView(context) {
39+
class BlurhashImageView(context: Context): androidx.appcompat.widget.AppCompatImageView(context) {
4040
var blurhash: String? = null
4141
var decodeWidth = 32
4242
var decodeHeight = 32

0 commit comments

Comments
 (0)