Fix checkstyle

This commit is contained in:
Norman Maurer 2013-06-11 16:12:34 +02:00
parent bf046492fb
commit 341f7757aa

View File

@ -982,7 +982,7 @@ public class DefaultCompositeByteBuf extends AbstractReferenceCountedByteBuf imp
int count = 0;
for (int i = 0; i < components.size(); i++) {
Component c = components.get(i);
count+= c.buf.nioBufferCount();
count += c.buf.nioBufferCount();
}
return count;
}