diff options
author | Harvey Harrison <[email protected]> | 2011-12-31 14:49:22 -0800 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2011-12-31 15:06:28 -0800 |
commit | 7de355f4569f3b41b22e98a85f031e8dc39e5c3a (patch) | |
tree | 9495a12530507dc6b5f4ac7cb43bf139c455660b /src/classes/share/com/sun/j3d/internal/ByteBufferWrapper.java | |
parent | 768a1aca734aef123c94dd30c443330f0c70b3d9 (diff) |
j3dutils: remove trailing whitespace from all files
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/classes/share/com/sun/j3d/internal/ByteBufferWrapper.java')
-rwxr-xr-x | src/classes/share/com/sun/j3d/internal/ByteBufferWrapper.java | 18 |
1 files changed, 9 insertions, 9 deletions
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 <i>get</i> method. Transfers <code>dst.length</code> * 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 <i>get</i> method. Transfers <i>length</i> bytes + * Bulk <i>get</i> method. Transfers <i>length</i> bytes * from the buffer starting at position <i>offset</i> 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. */ |