Remove useless double check on null introduced with the previous bugfix
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716082 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
65cd898a61
commit
e20da28904
@ -778,11 +778,9 @@ public final class InternalWorkbook {
|
|||||||
if (linkTable != null) {
|
if (linkTable != null) {
|
||||||
// also tell the LinkTable about the removed sheet
|
// also tell the LinkTable about the removed sheet
|
||||||
//index hasn't change in the linktable
|
//index hasn't change in the linktable
|
||||||
if (linkTable != null) {
|
|
||||||
linkTable.removeSheet(sheetIndex);
|
linkTable.removeSheet(sheetIndex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* make the tabid record look like the current situation.
|
* make the tabid record look like the current situation.
|
||||||
|
Loading…
Reference in New Issue
Block a user