Code Duplication    Length = 4-9 lines in 2 locations

app/Vendor/PHPExcel/PHPExcel/Reader/Excel5.php 2 locations

@@ 3949-3952 (lines=4) @@
3946
				$columnString = PHPExcel_Cell::stringFromColumnIndex($fc + $i);
3947
3948
				// Read cell?
3949
				if (($this->getReadFilter() !== NULL) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
3950
					$xfIndex = self::_GetInt2d($recordData, 4 + 2 * $i);
3951
					$this->_phpSheet->getCell($columnString . ($row + 1))->setXfIndex($this->_mapCellXfIndex[$xfIndex]);
3952
				}
3953
			}
3954
		}
3955
@@ 4029-4037 (lines=9) @@
4026
		$columnString = PHPExcel_Cell::stringFromColumnIndex($col);
4027
4028
		// Read cell?
4029
		if (($this->getReadFilter() !== NULL) && $this->getReadFilter()->readCell($columnString, $row + 1, $this->_phpSheet->getTitle()) ) {
4030
			// offset: 4; size: 2; XF index
4031
			$xfIndex = self::_GetInt2d($recordData, 4);
4032
4033
			// add style information
4034
			if (!$this->_readDataOnly) {
4035
				$this->_phpSheet->getCell($columnString . ($row + 1))->setXfIndex($this->_mapCellXfIndex[$xfIndex]);
4036
			}
4037
		}
4038
4039
	}
4040