Skip to content

Commit 2ee71ce

Browse files
committed
fix linter complaint
1 parent 54bb5d0 commit 2ee71ce

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Sources/AsyncHTTPClient/HTTPHandler.swift

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,19 @@
1313
//===----------------------------------------------------------------------===//
1414

1515
import Algorithms
16-
#if compiler(>=6.0)
17-
import Foundation
18-
#else
19-
@preconcurrency import Foundation
20-
#endif
2116
import Logging
2217
import NIOConcurrencyHelpers
2318
import NIOCore
2419
import NIOHTTP1
2520
import NIOPosix
2621
import NIOSSL
2722

23+
#if compiler(>=6.0)
24+
import Foundation
25+
#else
26+
@preconcurrency import Foundation
27+
#endif
28+
2829
extension HTTPClient {
2930
/// A request body.
3031
public struct Body: Sendable {

0 commit comments

Comments
 (0)