Skip to content

Commit

Permalink
Small style fix. (openzipkin#2578)
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraaga authored and abesto committed Sep 10, 2019
1 parent 1b453f5 commit 4e9d66d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ void maybeReadPayload(ChannelHandlerContext ctx) {
if (content instanceof ByteBufHolder) {
ByteBuf buf = ((ByteBufHolder) content).content();
try {
returned.writeBytes(((ByteBufHolder) content).content());
returned.writeBytes(buf);
} finally {
buf.release();
}
Expand Down

0 comments on commit 4e9d66d

Please sign in to comment.