Skip to content

Commit

Permalink
[NFC] Fix "Override by an inline function" in MaybeExcludedMedia
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed Dec 21, 2024
1 parent e475c1c commit e62b929
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ sealed class MaybeExcludedMedia {
override val result: Media,
) : MaybeExcludedMedia() {
@UnsafeOriginalMediaAccess
override inline val original: Media get() = result
override inline val exclusionReason: Nothing? get() = null
override val original: Media get() = result
override val exclusionReason: Nothing? get() = null
}

/**
Expand All @@ -60,7 +60,7 @@ sealed class MaybeExcludedMedia {
override val original: Media,
override val exclusionReason: MediaExclusionReason
) : MaybeExcludedMedia() {
override inline val result: Nothing? get() = null
override val result: Nothing? get() = null
}
}

Expand Down

0 comments on commit e62b929

Please sign in to comment.