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 0581f4b7d5
commit bf3e8364be
1 changed files with 1 additions and 3 deletions

View File

@ -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);
}
}