Fixed error with HexDump.java
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353546 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a4047ad573
commit
e85264cdfb
@ -225,7 +225,7 @@ public class HexDump
|
||||
buf.setLength(0);
|
||||
for (int j = 0; j < 8; j++)
|
||||
{
|
||||
buf.append( _hexcodes[ (( int ) (value >> _shifts[ j ])) & 15 ]);
|
||||
buf.append( _hexcodes[ (( int ) (value >> _shifts[ j + _shifts.length - 8 ])) & 15 ]);
|
||||
}
|
||||
return buf.toString();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user