Add static modifier where static member is just enough.

This commit is contained in:
Trustin Lee 2012-08-19 19:12:32 +09:00
parent 602f976e41
commit b7ac3edf02

View File

@ -62,7 +62,7 @@ public class HttpServerCodecTest {
Assert.assertEquals(offeredContentLength, totalBytesPolled);
}
private ByteBuf prepareDataChunk(int size) {
private static ByteBuf prepareDataChunk(int size) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < size; ++i) {
sb.append("a");