fixed bitmask off by 1 error

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352265 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew C. Oliver 2002-03-23 16:44:37 +00:00
parent 93095054a8
commit 8ff38b3e35

View File

@ -162,6 +162,7 @@ public class RecordUtil
public static String getMask(int bit)
{
if (bit > 1) bit--;
int mask = (int)Math.pow(2, bit);
return "0x" + Integer.toHexString(mask);