Skip to content

Commit

Permalink
Revert "val data by lazy {"
Browse files Browse the repository at this point in the history
This reverts commit ccc9c7f.
  • Loading branch information
dima-avdeev-jb committed Nov 21, 2023
1 parent ccc9c7f commit 7e1dd1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class LoadedFont internal constructor(
@ExperimentalTextApi
override val loadingStrategy: FontLoadingStrategy = FontLoadingStrategy.Blocking

val data: ByteArray by lazy { getData() }
val data: ByteArray get() = getData()

override fun equals(other: Any?): Boolean {
if (this === other) return true
Expand Down

0 comments on commit 7e1dd1f

Please sign in to comment.