mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
fixed a simple bug (25781)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353484 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c6253992a1
commit
a24f1136d0
@ -79,7 +79,7 @@ public class SprmUtils
|
||||
|
||||
public static int addSprm(short instruction, int param, byte[] varParam, List list)
|
||||
{
|
||||
int type = instruction & 0xe000;
|
||||
int type = (instruction & 0xe000) >> 13;
|
||||
|
||||
byte[] sprm = null;
|
||||
switch(type)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user