Indentation

This commit is contained in:
Trustin Lee 2009-12-30 03:20:22 +00:00
parent aae6dce046
commit 6dcc714704

View File

@ -130,7 +130,7 @@ public class CompositeChannelBuffer extends AbstractChannelBuffer {
}
// Build the component lookup table.
indices = new int[components.length + 1];
indices = new int[components.length + 1];
indices[0] = 0;
for (int i = 1; i <= components.length; i ++) {
indices[i] = indices[i - 1] + components[i - 1].capacity();