Missing empty line between methods

This commit is contained in:
Trustin Lee 2008-09-04 12:38:17 +00:00
parent 79499476c1
commit 500f972367

View File

@ -177,6 +177,7 @@ public class ReadOnlyChannelBufferTest {
public void shouldRejectSetBytes2() throws IOException {
unmodifiableBuffer(EMPTY_BUFFER).setBytes(0, (ScatteringByteChannel) null, 0);
}
@Test(expected = UnsupportedOperationException.class)
public void shouldRejectSetBytes3() {
unmodifiableBuffer(EMPTY_BUFFER).setBytes(0, (byte[]) null, 0, 0);