unfixed problem...have new solution

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352266 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew C. Oliver 2002-03-23 17:06:16 +00:00
parent 8ff38b3e35
commit 84a76b619f
1 changed files with 1 additions and 1 deletions

View File

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