File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -9,18 +9,17 @@ public typealias VisitMonitoringStream = AsyncStream<VisitMonitoringEvent>
99public typealias HeadingMonitorStream = AsyncStream < HeadingMonitorEvent >
1010public typealias BeaconsRangingStream = AsyncStream < BeaconRangeEvent >
1111
12- public final class AsyncLocationManager : NSObject {
12+ public final class AsyncLocationManager {
1313
1414 public private( set) var locationManager : CLLocationManager
1515 private var proxyDelegate : AsyncDelegateProxyInterface
1616 private var locationDelegate : CLLocationManagerDelegate
1717
18- public override init ( ) {
18+ public init ( ) {
1919 locationManager = CLLocationManager ( )
2020 proxyDelegate = AsyncDelegateProxy ( )
2121 locationDelegate = LocationDelegate ( delegateProxy: proxyDelegate)
2222 locationManager. delegate = locationDelegate
23- super. init ( )
2423 }
2524
2625 public func requestAuthorizationWhenInUse( ) async -> CLAuthorizationStatus {
You can’t perform that action at this time.
0 commit comments