Skip to content

Commit 4880ed6

Browse files
authored
Add final to UIViewControllers in UIKit CaseStudies (pointfreeco#3221)
* refactor: add final to EagerNavigationViewController * refactor: add final to LazyNavigationViewController
1 parent d4757e3 commit 4880ed6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Examples/CaseStudies/UIKitCaseStudies/LoadThenNavigate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ struct LazyNavigation {
5252
}
5353
}
5454

55-
class LazyNavigationViewController: UIViewController {
55+
final class LazyNavigationViewController: UIViewController {
5656
let store: StoreOf<LazyNavigation>
5757

5858
init(store: StoreOf<LazyNavigation>) {

Examples/CaseStudies/UIKitCaseStudies/NavigateAndLoad.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ struct EagerNavigation {
4848
}
4949
}
5050

51-
class EagerNavigationViewController: UIViewController {
51+
final class EagerNavigationViewController: UIViewController {
5252
let store: StoreOf<EagerNavigation>
5353

5454
init(store: StoreOf<EagerNavigation>) {

0 commit comments

Comments
 (0)