diff options
author | Sven Gothel <[email protected]> | 2014-02-21 08:04:07 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-02-21 08:04:07 +0100 |
commit | dac8d11f68ffa3a35fedeab879132c5d9aa4907c (patch) | |
tree | ba082ba812ec4ef10c29d92660c36bade20b23b6 /src/java | |
parent | bd91f0fb4c67c7effc4715600e53f38bf1b79e12 (diff) |
Bitstream: Another CamelCase fix: uint32LongtoInt -> uint32LongToInt
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/com/jogamp/common/util/Bitstream.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/com/jogamp/common/util/Bitstream.java b/src/java/com/jogamp/common/util/Bitstream.java index 7938c1c..656d3c4 100644 --- a/src/java/com/jogamp/common/util/Bitstream.java +++ b/src/java/com/jogamp/common/util/Bitstream.java @@ -1317,7 +1317,7 @@ public class Bitstream<T> { * Otherwise return -1. */ public static final int toUInt32Int(final int int32) { - return uint32LongtoInt(toUInt32Long(int32)); + return uint32LongToInt(toUInt32Long(int32)); } /** @@ -1325,7 +1325,7 @@ public class Bitstream<T> { * value as <code>int</code> if ≤ {@link Integer#MAX_VALUE}. * Otherwise return -1. */ - public static final int uint32LongtoInt(final long uint32) { + public static final int uint32LongToInt(final long uint32) { if( Integer.MAX_VALUE >= uint32 ) { return (int)uint32; } else { |