From 0a413af35d7ad111bb7714da5e285a483806c80f Mon Sep 17 00:00:00 2001 From: Cruz Julian Bishop Date: Thu, 28 Jun 2012 19:34:52 +1000 Subject: [PATCH] Comply with line width a bit more --- buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java b/buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java index 7a7990aa35..18710d9819 100644 --- a/buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java +++ b/buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java @@ -588,8 +588,8 @@ public class CompositeByteBuf extends AbstractByteBuf { * * @param index The {@code index} to search for and include in the returned {@link ByteBuf} * @return The {@link ByteBuf} that contains the specified {@code index} - * @throws IndexOutOfBoundsException when the specified {@code index} is less than - * zero, or larger than {@code capacity()} + * @throws IndexOutOfBoundsException when the specified {@code index} is + * less than zero, or larger than {@code capacity()} */ public ByteBuf getBufferFor(int index) throws IndexOutOfBoundsException { if (index < 0 || index > capacity()) {