Skip to content

Commit e331563

Browse files
committed
Remove redundant Foundation imports
1 parent d45c764 commit e331563

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Sources/AsyncMaterializedSequence/AsyncMaterializedSequence.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import Foundation
2-
31
@available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
42
extension AsyncSequence {
53

@@ -114,7 +112,7 @@ extension AsyncMaterializedSequence.Completion: CustomDebugStringConvertible {
114112
public var debugDescription: String {
115113
switch self {
116114
case .failure(let error):
117-
".failure(\(error.localizedDescription))"
115+
".failure(\(error))"
118116
case .finished:
119117
".finished"
120118
}

Sources/TestingSupport/AsyncSequence+Collect.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import AsyncAlgorithms
2-
import Foundation
32

43
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
54
extension AsyncSequence {

0 commit comments

Comments
 (0)