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:
parent
93095054a8
commit
8ff38b3e35
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user