git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352533 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew C. Oliver 2002-04-28 18:02:21 +00:00
parent a56eec71b7
commit 9683424c14

View File

@ -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;
}