Skip to content

Commit f8f9386

Browse files
committed
Remove explicit return statements
1 parent 69d2f30 commit f8f9386

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FirebaseAuth/Sources/Swift/Auth/Auth+Async.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import Foundation
4848
/// }
4949
/// ```
5050
var authStateChanges: AsyncStream<User?> {
51-
return AsyncStream { continuation in
51+
AsyncStream { continuation in
5252
let listenerHandle = addStateDidChangeListener { _, user in
5353
continuation.yield(user)
5454
}
@@ -89,7 +89,7 @@ import Foundation
8989
/// }
9090
/// ```
9191
var idTokenChanges: AsyncStream<User?> {
92-
return AsyncStream { continuation in
92+
AsyncStream { continuation in
9393
let listenerHandle = addIDTokenDidChangeListener { _, user in
9494
continuation.yield(user)
9595
}

0 commit comments

Comments
 (0)