Skip to content

Commit

Permalink
Fix codefactor issue
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgio committed Aug 28, 2024
1 parent 88eaf24 commit adb836a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ScopeContext(val parent: Context) : MutableContext(
get() = parent.attributes as? MutableAstAttributes ?: parent.attributes.toMutable()

override val mediaStorage: MutableMediaStorage
get() = (parent.mediaStorage as? MutableMediaStorage) ?: MutableMediaStorage(options)
get() = parent.mediaStorage as? MutableMediaStorage ?: MutableMediaStorage(options)

/**
* If no matching function is found among this [ScopeContext]'s own [libraries],
Expand Down

0 comments on commit adb836a

Please sign in to comment.