mirror of https://github.com/apache/poi.git
fix broken test case
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892144 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0b89ad3f77
commit
5e15f7bf77
|
@ -341,8 +341,11 @@ public class XSSFHyperlink implements Hyperlink {
|
|||
*/
|
||||
@Override
|
||||
public void setFirstColumn(int col) {
|
||||
int lastColumn = getLastColumn();
|
||||
if (col > lastColumn) lastColumn = col;
|
||||
String firstCellRef = CellReference.convertNumToColString(col) + (getFirstRow() + 1);
|
||||
setCellRange(firstCellRef + ":" + buildLastCellReference().formatAsString());
|
||||
String lastCellRef = CellReference.convertNumToColString(lastColumn) + (getLastRow() + 1);
|
||||
setCellRange(firstCellRef + ":" + lastCellRef);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -363,8 +366,11 @@ public class XSSFHyperlink implements Hyperlink {
|
|||
*/
|
||||
@Override
|
||||
public void setFirstRow(int row) {
|
||||
int lastRow = getLastRow();
|
||||
if (row > lastRow) lastRow = row;
|
||||
String firstCellRef = CellReference.convertNumToColString(getFirstColumn()) + (row + 1);
|
||||
setCellRange(firstCellRef + ":" + buildLastCellReference().formatAsString());
|
||||
String lastCellRef = CellReference.convertNumToColString(getLastColumn()) + (lastRow + 1);
|
||||
setCellRange(firstCellRef + ":" + lastCellRef);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue