Code Duplication    Length = 10-10 lines in 2 locations

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

@@ 2656-2665 (lines=10) @@
2653
	/**
2654
	 * Read MSODRAWINGGROUP record
2655
	 */
2656
	private function _readMsoDrawingGroup()
2657
	{
2658
		$length = self::_GetInt2d($this->_data, $this->_pos + 2);
2659
2660
		// get spliced record data
2661
		$splicedRecordData = $this->_getSplicedRecordData();
2662
		$recordData = $splicedRecordData['recordData'];
2663
2664
		$this->_drawingGroupData .= $recordData;
2665
	}
2666
2667
2668
	/**
@@ 4045-4054 (lines=10) @@
4042
	/**
4043
	 * Read MSODRAWING record
4044
	 */
4045
	private function _readMsoDrawing()
4046
	{
4047
		$length = self::_GetInt2d($this->_data, $this->_pos + 2);
4048
4049
		// get spliced record data
4050
		$splicedRecordData = $this->_getSplicedRecordData();
4051
		$recordData = $splicedRecordData['recordData'];
4052
4053
		$this->_drawingData .= $recordData;
4054
	}
4055
4056
4057
	/**