Skip to content

Commit

Permalink
feat: fixed a bug with caching
Browse files Browse the repository at this point in the history
  • Loading branch information
y9san9 committed Dec 22, 2023
1 parent 81b0de8 commit 7adfb48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/commonMain/kotlin/app/meetacy/di/DI.kt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class DI private constructor(
trace = DependencyTrace(trace.list + other.trace.list)
)

public val getting: InnerDependency = InnerDependency(di = this)
public val getting: InnerDependency get() = InnerDependency(di = this)

private fun subDI(key: DependencyKey<*>): DI {
return DI(
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ composeRuntime = "1.3.3"
composeCompiler = "1.5.6"
lifecycle = "2.6.1"

mdi = "0.0.28"
mdi = "0.0.29"

[libraries]

Expand Down

0 comments on commit 7adfb48

Please sign in to comment.