Skip to content

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
mrousavy committed Jan 23, 2025
1 parent 4c8445e commit 1c686c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class ${manager}: SimpleViewManager<View>() {
}
override fun updateState(view: View, props: ReactStylesDiffMap, stateWrapper: StateWrapper): Any? {
// 1. Downcast state
// 1. Downcast state
val stateWrapperImpl = stateWrapper as? StateWrapperImpl ?: throw Error("StateWrapper uses a different implementation!")
val hybridView = views[view] ?: throw Error("Couldn't find view $view in local views table!")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class HybridTestViewManager: SimpleViewManager<View>() {
}

override fun updateState(view: View, props: ReactStylesDiffMap, stateWrapper: StateWrapper): Any? {
// 1. Downcast state
// 1. Downcast state
val stateWrapperImpl = stateWrapper as? StateWrapperImpl ?: throw Error("StateWrapper uses a different implementation!")
val hybridView = views[view] ?: throw Error("Couldn't find view $view in local views table!")

Expand Down

0 comments on commit 1c686c7

Please sign in to comment.