summaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/util/TestBitstream03.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-07-03 16:06:47 +0200
committerSven Gothel <[email protected]>2014-07-03 16:06:47 +0200
commitdf9ff7f340a5ab4e07efc613f5f264eeae63d4c7 (patch)
tree239ae276b82024b140428e6c0fe5d739fdd686a4 /src/junit/com/jogamp/common/util/TestBitstream03.java
parenteb47aaba63e3b1bf55f274a0f338f1010a017ae4 (diff)
Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74)
Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) - Change non static accesses to static members using declaring type - Change indirect accesses to static members to direct accesses (accesses through subtypes) - Add final modifier to private fields - Add final modifier to method parameters - Add final modifier to local variables - Remove unnecessary casts - Remove unnecessary '$NON-NLS$' tags - Remove trailing white spaces on all lines
Diffstat (limited to 'src/junit/com/jogamp/common/util/TestBitstream03.java')
-rw-r--r--src/junit/com/jogamp/common/util/TestBitstream03.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/junit/com/jogamp/common/util/TestBitstream03.java b/src/junit/com/jogamp/common/util/TestBitstream03.java
index 3647924..29debc8 100644
--- a/src/junit/com/jogamp/common/util/TestBitstream03.java
+++ b/src/junit/com/jogamp/common/util/TestBitstream03.java
@@ -60,7 +60,7 @@ public class TestBitstream03 extends JunitTracer {
test01Int16BitsImpl(ByteOrder.BIG_ENDIAN);
test01Int16BitsImpl(ByteOrder.LITTLE_ENDIAN);
}
- void test01Int16BitsImpl(ByteOrder byteOrder) throws IOException {
+ void test01Int16BitsImpl(final ByteOrder byteOrder) throws IOException {
test01Int16BitsAlignedImpl(byteOrder, (short)0);
test01Int16BitsAlignedImpl(byteOrder, (short)1);
test01Int16BitsAlignedImpl(byteOrder, (short)7);
@@ -69,7 +69,7 @@ public class TestBitstream03 extends JunitTracer {
test01Int16BitsAlignedImpl(byteOrder, Short.MAX_VALUE);
test01Int16BitsAlignedImpl(byteOrder, (short)0xffff);
}
- void test01Int16BitsAlignedImpl(ByteOrder byteOrder, short val16) throws IOException {
+ void test01Int16BitsAlignedImpl(final ByteOrder byteOrder, final short val16) throws IOException {
// Test with buffer defined value
final ByteBuffer bb = ByteBuffer.allocate(Buffers.SIZEOF_SHORT);
if( null != byteOrder ) {
@@ -104,7 +104,7 @@ public class TestBitstream03 extends JunitTracer {
test02Int16BitsUnalignedImpl(ByteOrder.BIG_ENDIAN);
test02Int16BitsUnalignedImpl(ByteOrder.LITTLE_ENDIAN);
}
- void test02Int16BitsUnalignedImpl(ByteOrder byteOrder) throws IOException {
+ void test02Int16BitsUnalignedImpl(final ByteOrder byteOrder) throws IOException {
test02Int16BitsUnalignedImpl(byteOrder, 0);
test02Int16BitsUnalignedImpl(byteOrder, 1);
test02Int16BitsUnalignedImpl(byteOrder, 7);
@@ -113,7 +113,7 @@ public class TestBitstream03 extends JunitTracer {
test02Int16BitsUnalignedImpl(byteOrder, 24);
test02Int16BitsUnalignedImpl(byteOrder, 25);
}
- void test02Int16BitsUnalignedImpl(ByteOrder byteOrder, final int preBits) throws IOException {
+ void test02Int16BitsUnalignedImpl(final ByteOrder byteOrder, final int preBits) throws IOException {
test02Int16BitsUnalignedImpl(byteOrder, preBits, (short)0);
test02Int16BitsUnalignedImpl(byteOrder, preBits, (short)1);
test02Int16BitsUnalignedImpl(byteOrder, preBits, (short)7);
@@ -122,7 +122,7 @@ public class TestBitstream03 extends JunitTracer {
test02Int16BitsUnalignedImpl(byteOrder, preBits, Short.MAX_VALUE);
test02Int16BitsUnalignedImpl(byteOrder, preBits, (short)0xffff);
}
- void test02Int16BitsUnalignedImpl(ByteOrder byteOrder, int preBits, short val16) throws IOException {
+ void test02Int16BitsUnalignedImpl(final ByteOrder byteOrder, final int preBits, final short val16) throws IOException {
final int preBytes = ( preBits + 7 ) >>> 3;
final int byteCount = preBytes + Buffers.SIZEOF_SHORT;
final ByteBuffer bb = ByteBuffer.allocate(byteCount);
@@ -146,8 +146,8 @@ public class TestBitstream03 extends JunitTracer {
Assert.assertEquals(val16, r16);
}
- public static void main(String args[]) throws IOException {
- String tstname = TestBitstream03.class.getName();
+ public static void main(final String args[]) throws IOException {
+ final String tstname = TestBitstream03.class.getName();
org.junit.runner.JUnitCore.main(tstname);
}