Skip to content

Commit

Permalink
102 -- Remove usage of deprecated NIO ELF APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mordil committed Jan 3, 2022
1 parent 0c3beee commit 16037bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/RediStack/RESP/RESPValue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ extension EventLoopFuture where Value == RESPValue {
file: StaticString = #file,
line: UInt = #line
) -> EventLoopFuture<T> {
return self.flatMapThrowing(file: file, line: line) {
return self.flatMapThrowing {
guard let value = T(fromRESP: $0) else {
throw RedisClientError.failedRESPConversion(to: type)
}
Expand Down

0 comments on commit 16037bb

Please sign in to comment.