Skip to content

Commit dae90e6

Browse files
Resultant value wise comparison added
1 parent bd67f73 commit dae90e6

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

apps/excel-diff-checker.jar

544 Bytes
Binary file not shown.

src/main/java/edu/abhi/poi/excel/SheetProcessorTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ private void processAllColumns(XSSFRow row1, XSSFRow row2) throws Exception {
7070
crt.setDiffFlag(true);
7171
Utility.processDiffForColumn(cell1, commentFlag, cell2 == null? null : Utility.getCellValue(cell2), crt.getDiffContainer());
7272
}
73-
} else if (!cell1.getRawValue().equals(cell2.getRawValue())) {
73+
} else if (!Utility.getCellValue(cell1).equals(Utility.getCellValue(cell2))) {
7474
crt.setDiffFlag(true);
7575
Utility.processDiffForColumn(cell1, commentFlag, Utility.getCellValue(cell2), crt.getDiffContainer());
7676
}

0 commit comments

Comments
 (0)