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:
Javen O'Neal 2017-12-13 06:39:01 +00:00
parent 5530f8a831
commit 525952b625

View File

@ -373,7 +373,6 @@ public final class TestUnfixedBugs {
long maxSeenRowNum = 0; //1-based
for (final CTRow ctRow : wb.getSheetAt(0).getCTWorksheet().getSheetData().getRowArray()) {
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,
rowNum > maxSeenRowNum);
maxSeenRowNum = rowNum;