delete commented out code
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1817976 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5530f8a831
commit
525952b625
@ -373,7 +373,6 @@ public final class TestUnfixedBugs {
|
|||||||
long maxSeenRowNum = 0; //1-based
|
long maxSeenRowNum = 0; //1-based
|
||||||
for (final CTRow ctRow : wb.getSheetAt(0).getCTWorksheet().getSheetData().getRowArray()) {
|
for (final CTRow ctRow : wb.getSheetAt(0).getCTWorksheet().getSheetData().getRowArray()) {
|
||||||
final long rowNum = ctRow.getR(); //1-based
|
final long rowNum = ctRow.getR(); //1-based
|
||||||
//final int rowNum = Integer.parseInt(ctRow.getR()); //1-based
|
|
||||||
assertTrue("Row " + rowNum + " (1-based) is not in ascending order; previously saw " + maxSeenRowNum,
|
assertTrue("Row " + rowNum + " (1-based) is not in ascending order; previously saw " + maxSeenRowNum,
|
||||||
rowNum > maxSeenRowNum);
|
rowNum > maxSeenRowNum);
|
||||||
maxSeenRowNum = rowNum;
|
maxSeenRowNum = rowNum;
|
||||||
|
Loading…
Reference in New Issue
Block a user