From 7de355f4569f3b41b22e98a85f031e8dc39e5c3a Mon Sep 17 00:00:00 2001 From: Harvey Harrison Date: Sat, 31 Dec 2011 14:49:22 -0800 Subject: j3dutils: remove trailing whitespace from all files Signed-off-by: Harvey Harrison --- .../share/com/sun/j3d/internal/ByteBufferWrapper.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/classes/share/com/sun/j3d/internal/ByteBufferWrapper.java') diff --git a/src/classes/share/com/sun/j3d/internal/ByteBufferWrapper.java b/src/classes/share/com/sun/j3d/internal/ByteBufferWrapper.java index fe6ce6f..e673ae7 100755 --- a/src/classes/share/com/sun/j3d/internal/ByteBufferWrapper.java +++ b/src/classes/share/com/sun/j3d/internal/ByteBufferWrapper.java @@ -64,7 +64,7 @@ public class ByteBufferWrapper extends BufferWrapper { private ByteBuffer buffer = null; /** - * Constructor initializes buffer with a + * Constructor initializes buffer with a * java.nio.ByteBuffer object. */ public ByteBufferWrapper(ByteBuffer buffer) { @@ -81,7 +81,7 @@ public class ByteBufferWrapper extends BufferWrapper { /** * Allocate a direct ByteBuffer with the given capacity. - * @return New ByteBufferWrapper containing the + * @return New ByteBufferWrapper containing the * new buffer. */ public static ByteBufferWrapper allocateDirect(int capacity) { @@ -110,7 +110,7 @@ public class ByteBufferWrapper extends BufferWrapper { /** * Reads the byte at this buffer's current position, - * and then increments the position. + * and then increments the position. */ public byte get() { return buffer.get(); @@ -123,7 +123,7 @@ public class ByteBufferWrapper extends BufferWrapper { return buffer.get(index); } - /** + /** * Bulk get method. Transfers dst.length * bytes from * the buffer to the destination array and increments the @@ -133,9 +133,9 @@ public class ByteBufferWrapper extends BufferWrapper { buffer.get(dst); return this; } - + /** - * Bulk get method. Transfers length bytes + * Bulk get method. Transfers length bytes * from the buffer starting at position offset into * the destination array. */ @@ -153,7 +153,7 @@ public class ByteBufferWrapper extends BufferWrapper { } /** - * Modifies this buffer's byte order. + * Modifies this buffer's byte order. */ public ByteBufferWrapper order(ByteOrderWrapper bo) { @@ -162,7 +162,7 @@ public class ByteBufferWrapper extends BufferWrapper { return this; } - /** + /** * Creates a view of this ByteBufferWrapper as a * FloatBufferWrapper. Uses the correct */ @@ -170,7 +170,7 @@ public class ByteBufferWrapper extends BufferWrapper { return new FloatBufferWrapper( buffer.asFloatBuffer() ); } - /** + /** * Creates a view of this ByteBufferWrapper as a * DoubleBufferWrapper. */ -- cgit v1.2.3