Code Duplication    Length = 8-10 lines in 2 locations

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

@@ 1520-1527 (lines=8) @@
1517
	/**
1518
	 * Reads a general type of BIFF record. Does nothing except for moving stream pointer forward to next record.
1519
	 */
1520
	private function _readDefault()
1521
	{
1522
		$length = self::_GetInt2d($this->_data, $this->_pos + 2);
1523
//		$recordData = substr($this->_data, $this->_pos + 4, $length);
1524
1525
		// move stream pointer to next record
1526
		$this->_pos += 4 + $length;
1527
	}
1528
1529
1530
	/**
@@ 1685-1694 (lines=10) @@
1682
	 * --	"OpenOffice.org's Documentation of the Microsoft
1683
	 * 		Excel File Format"
1684
	 */
1685
	private function _readFilepass()
1686
	{
1687
		$length = self::_GetInt2d($this->_data, $this->_pos + 2);
1688
//		$recordData = substr($this->_data, $this->_pos + 4, $length);
1689
1690
		// move stream pointer to next record
1691
		$this->_pos += 4 + $length;
1692
1693
		throw new Exception('Cannot read encrypted file');
1694
	}
1695
1696
1697
	/**