mirror of https://github.com/apache/poi.git
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
0581f4b7d5
commit
bf3e8364be
|
@ -778,9 +778,7 @@ public final class InternalWorkbook {
|
|||
if (linkTable != null) {
|
||||
// also tell the LinkTable about the removed sheet
|
||||
//index hasn't change in the linktable
|
||||
if (linkTable != null) {
|
||||
linkTable.removeSheet(sheetIndex);
|
||||
}
|
||||
linkTable.removeSheet(sheetIndex);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue