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:
Dominik Stadler 2015-11-24 09:10:27 +00:00
parent 65cd898a61
commit e20da28904

View File

@ -778,9 +778,7 @@ 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);
}
} }
} }