Skip to content

Commit

Permalink
add HIDDEN level deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyKorshun committed Aug 1, 2023
1 parent 0f398ed commit d03c714
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fun <T : Store<*, *, *>> storeViaViewModel(
}
}

@Deprecated("Use storeViewViewModel function with coroutine context param")
@Deprecated("Use storeViewViewModel function with coroutine context param", level = DeprecationLevel.HIDDEN)
fun <T : Store<*, *, *>> storeViaViewModel(
dispatcher: CoroutineDispatcher = Dispatchers.Default,
sharedViewModelKey: String? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fun <State : Any, Event : Any, UiEvent : Event, Command : Any, News : Any> Kotea
return StoreImpl(initialState, initialCommands, commandsFlowHandlers, update)
}

@Deprecated("Use factory without uncaughtExceptionHandler (don't calling rigt now)")
@Deprecated("Use factory without uncaughtExceptionHandler (don't calling rigt now)", level = DeprecationLevel.HIDDEN)
fun <State : Any, Event : Any, UiEvent : Event, Command : Any, News : Any> KoteaStore(
initialState: State,
initialCommands: List<Command> = emptyList(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fun <State : Any, Event : Any, UiEvent : Event, Command : Any, News : Any> Kotea
)
}

@Deprecated("Use factory without uncaughtExceptionHandler (don't calling rigt now)")
@Deprecated("Use factory without uncaughtExceptionHandler (don't calling rigt now)", level = DeprecationLevel.HIDDEN)
fun <State : Any, Event : Any, UiEvent : Event, Command : Any, News : Any> KoteaLoggingStore(
initialState: State,
initialCommands: List<Command> = emptyList(),
Expand Down

0 comments on commit d03c714

Please sign in to comment.