From dac8d11f68ffa3a35fedeab879132c5d9aa4907c Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Fri, 21 Feb 2014 08:04:07 +0100 Subject: Bitstream: Another CamelCase fix: uint32LongtoInt -> uint32LongToInt --- src/java/com/jogamp/common/util/Bitstream.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/java/com/jogamp/common') 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 { * 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 { * value as int 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 { -- cgit v1.2.3