From 8540e4d3051a1aa6a2fa9686c47b884a3df23cf7 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 20 Jan 2014 07:01:09 +0100 Subject: m MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/algorithms/bits/Bits.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/algorithms') diff --git a/src/algorithms/bits/Bits.java b/src/algorithms/bits/Bits.java index 493e16d..3dfeca4 100644 --- a/src/algorithms/bits/Bits.java +++ b/src/algorithms/bits/Bits.java @@ -295,7 +295,7 @@ public class Bits value ^= value >> 3; value ^= value >> 2; value ^= value >> 1; - return value & 1; + return (£{T})(value & 1); } /** @@ -304,7 +304,7 @@ public class Bits * @param value The interger * @return The parity */ - public static char parity_table(£{T} value) + public static byte parity_table(£{T} value) { £>(( $S > 4 )) && value ^= value >> 32; @@ -312,7 +312,7 @@ public class Bits value ^= value >> 16; £>(( $S > 1 )) && value ^= value >> 8; - return PARITY_TABLE_256[rc]; + return PARITY_TABLE_256[(int)value]; } £>done } -- cgit v1.2.3-70-g09d2