Code Duplication    Length = 10-10 lines in 2 locations

src/PhpSpreadsheet/Reader/Excel5.php 2 locations

@@ 2822-2831 (lines=10) @@
2819
    /**
2820
     * Read MSODRAWINGGROUP record
2821
     */
2822
    private function readMsoDrawingGroup()
2823
    {
2824
        $length = self::getInt2d($this->data, $this->pos + 2);
2825
2826
        // get spliced record data
2827
        $splicedRecordData = $this->getSplicedRecordData();
2828
        $recordData = $splicedRecordData['recordData'];
2829
2830
        $this->drawingGroupData .= $recordData;
2831
    }
2832
2833
2834
    /**
@@ 4198-4207 (lines=10) @@
4195
    /**
4196
     * Read MSODRAWING record
4197
     */
4198
    private function readMsoDrawing()
4199
    {
4200
        $length = self::getInt2d($this->data, $this->pos + 2);
4201
4202
        // get spliced record data
4203
        $splicedRecordData = $this->getSplicedRecordData();
4204
        $recordData = $splicedRecordData['recordData'];
4205
4206
        $this->drawingData .= $recordData;
4207
    }
4208
4209
4210
    /**