Skip to content

Commit f8425e2

Browse files
concurrent modification and invalid part modification exception bug fix
1 parent dae90e6 commit f8425e2

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

apps/excel-diff-checker.jar

267 Bytes
Binary file not shown.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static void processDiffForColumn(XSSFCell cell1, boolean commentFlag, Str
4040
return;
4141
}
4242

43-
synchronized(sheet) {
43+
synchronized(sheet.getWorkbook()) {
4444
CreationHelper factory = sheet.getWorkbook().getCreationHelper();
4545
//get an existing cell or create it otherwise:
4646

0 commit comments

Comments
 (0)