Skip to content

Commit

Permalink
Add final to UIViewControllers in UIKit CaseStudies (#3221)
Browse files Browse the repository at this point in the history
* refactor: add final to EagerNavigationViewController

* refactor: add final to LazyNavigationViewController
  • Loading branch information
junbangg authored Jul 2, 2024
1 parent d4757e3 commit 4880ed6
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 @@ -52,7 +52,7 @@ struct LazyNavigation {
}
}

class LazyNavigationViewController: UIViewController {
final class LazyNavigationViewController: UIViewController {
let store: StoreOf<LazyNavigation>

init(store: StoreOf<LazyNavigation>) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct EagerNavigation {
}
}

class EagerNavigationViewController: UIViewController {
final class EagerNavigationViewController: UIViewController {
let store: StoreOf<EagerNavigation>

init(store: StoreOf<EagerNavigation>) {
Expand Down

0 comments on commit 4880ed6

Please sign in to comment.