Skip to content

Commit 77b9f9b

Browse files
committed
[BOOK-505] chore: @param 어노테이션 추가
This annotation is currently applied to the value parameter only, but in the future it will also be applied to property. - To opt in to applying to both value parameter and property, add '-Xannotation-default-target=param-property' to your compiler arguments. - To keep applying to the value parameter only, use the '@param:' annotation target. See https://youtrack.jetbrains.com/issue/KT-73255 for more details warning 해결
1 parent 57e8d5b commit 77b9f9b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/datastore/impl/src/main/kotlin/com/ninecraft/booket/core/datastore/impl/datasource/DefaultLoginMethodDataSource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import kotlinx.coroutines.flow.map
1717
@SingleIn(DataScope::class)
1818
@Inject
1919
class DefaultLoginMethodDataSource(
20-
@LoginMethodDataStore private val dataStore: DataStore<Preferences>,
20+
@param:LoginMethodDataStore private val dataStore: DataStore<Preferences>,
2121
) : LoginMethodDataSource {
2222
override val recentLoginMethod: Flow<LoginMethod> = dataStore.data
2323
.handleIOException()

0 commit comments

Comments
 (0)