off by 1
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352533 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a56eec71b7
commit
9683424c14
@ -27,7 +27,7 @@ public class ReferenceUtil {
|
||||
int[] retval = new int[2];
|
||||
String[] parts = seperateRowColumns(reference);
|
||||
retval[1] = convertColStringToNum(parts[0]);
|
||||
retval[0] = Integer.parseInt(parts[1]);
|
||||
retval[0] = Integer.parseInt(parts[1])-1;
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user