Skip to content

Commit 6d5c5a6

Browse files
committed
Add missing final
1 parent 9ef6953 commit 6d5c5a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

InAppViewDebugger/HierarchyTableViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ protocol HierarchyTableViewControllerDelegate: AnyObject {
1515
func hierarchyTableViewControllerWillNavigateBackToPreviousSnapshot(_ viewController: HierarchyTableViewController)
1616
}
1717

18-
class HierarchyTableViewController: UITableViewController, HierarchyTableViewCellDelegate, HierarchyTableViewControllerDelegate {
18+
final class HierarchyTableViewController: UITableViewController, HierarchyTableViewCellDelegate, HierarchyTableViewControllerDelegate {
1919
private static let ReuseIdentifier = "HierarchyTableViewCell"
2020

2121
private let snapshot: Snapshot

InAppViewDebugger/SnapshotView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protocol SnapshotViewDelegate: AnyObject {
2727

2828
/// A view that renders an interactive 3D representation of a UI element
2929
/// hierarchy snapshot.
30-
class SnapshotView: UIView {
30+
final class SnapshotView: UIView {
3131
public weak var delegate: SnapshotViewDelegate?
3232

3333
private let configuration: SnapshotViewConfiguration

0 commit comments

Comments
 (0)