Skip to content

Commit 16037bb

Browse files
committed
102 -- Remove usage of deprecated NIO ELF APIs
1 parent 0c3beee commit 16037bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/RediStack/RESP/RESPValue.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ extension EventLoopFuture where Value == RESPValue {
184184
file: StaticString = #file,
185185
line: UInt = #line
186186
) -> EventLoopFuture<T> {
187-
return self.flatMapThrowing(file: file, line: line) {
187+
return self.flatMapThrowing {
188188
guard let value = T(fromRESP: $0) else {
189189
throw RedisClientError.failedRESPConversion(to: type)
190190
}

0 commit comments

Comments
 (0)