Skip to content

Commit a2f4e34

Browse files
committed
Update Permission.swift
1 parent d4e7dbf commit a2f4e34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/d3-async-location/Permission.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ import CoreLocation
1111
@available(iOS 15.0, watchOS 7.0, *)
1212
final class Permission{
1313

14+
// MARK: - Private properties
15+
1416
/// Current status
1517
private var status : CLAuthorizationStatus
1618

1719
/// Continuation to get permission if status is not defined
1820
private var permissioning : CheckedContinuation<CLAuthorizationStatus, Never>?
1921

2022
/// Check if status is determined
21-
private var isDetermined : Bool{
22-
status != .notDetermined
23-
}
23+
private var isDetermined : Bool{ status != .notDetermined }
2424

2525
// MARK: - Life circle
2626

0 commit comments

Comments
 (0)