Skip to content
Prev Previous commit
Next Next commit
eof not needed
  • Loading branch information
dkz2 committed May 26, 2023
commit 633e79b1f669610e44e2bb1cc1934b4d165f66c7
2 changes: 1 addition & 1 deletion Sources/SwiftMemcache/MemcachedResponseDecoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct MemcachedResponseDecoder: ByteToMessageDecoder {
return .continue
}

func decodeLast(context: ChannelHandlerContext, buffer: inout ByteBuffer, seenEOF: Bool) throws -> DecodingState {
func decodeLast(context: ChannelHandlerContext, buffer: inout ByteBuffer) throws -> DecodingState {
return try self.decode(context: context, buffer: &buffer)
}
}