Skip to content

Commit d1107c8

Browse files
committed
Fix compile error
1 parent 28a167c commit d1107c8

File tree

1 file changed

+1
-1
lines changed
  • interfaces/src/main/kotlin/com/noxcrew/interfaces/properties

1 file changed

+1
-1
lines changed

interfaces/src/main/kotlin/com/noxcrew/interfaces/properties/LazyProperty.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public abstract class LazyProperty<T : Any>(
114114
}
115115

116116
/** Returns the value of this property. */
117-
public suspend fun getValue(): T = value ?: reevaluate(false)
117+
public suspend fun getValue(): T = value ?: reevaluate(null, false)
118118

119119
/** Returns the cached value of this property. */
120120
public fun getCachedValue(): T? = value

0 commit comments

Comments
 (0)