Skip to content

Commit c045ff1

Browse files
committed
fix: Do not inherit from NavigationControllerPopDelegateProxy
In previous versions, NavigationControllerPopDelegateProxy only used the public annotation, and the caller could not inherit from NavigationControllerPopDelegateProxy. This submission adds the final modifier to make it clear that this cannot be inherited.
1 parent eb15d6d commit c045ff1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Base/Controller/NavigationControllerPopDelegateProxy.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if !os(watchOS) && !os(tvOS)
1010
import UIKit
1111

12-
public class NavigationControllerPopDelegateProxy: NSObject, UIGestureRecognizerDelegate {
12+
public final class NavigationControllerPopDelegateProxy: NSObject, UIGestureRecognizerDelegate {
1313
public weak var navigationController: UINavigationController?
1414
public weak var popGestureRecognizerDelegate: UIGestureRecognizerDelegate?
1515

0 commit comments

Comments
 (0)