Code Duplication    Length = 7-7 lines in 2 locations

lib/Caxy/HtmlDiff/Table/TableDiff.php 2 locations

@@ 249-255 (lines=7) @@
246
        }
247
    }
248
249
    protected function processInsertOperation(Operation $operation, $newRows, &$appliedRowSpans, $forceExpansion = false)
250
    {
251
        $targetRows = array_slice($newRows, $operation->startInNew, $operation->endInNew - $operation->startInNew);
252
        foreach ($targetRows as $row) {
253
            $this->diffAndAppendRows(null, $row, $appliedRowSpans, $forceExpansion);
254
        }
255
    }
256
257
    protected function processDeleteOperation(Operation $operation, $oldRows, &$appliedRowSpans, $forceExpansion = false)
258
    {
@@ 257-263 (lines=7) @@
254
        }
255
    }
256
257
    protected function processDeleteOperation(Operation $operation, $oldRows, &$appliedRowSpans, $forceExpansion = false)
258
    {
259
        $targetRows = array_slice($oldRows, $operation->startInOld, $operation->endInOld - $operation->startInOld);
260
        foreach ($targetRows as $row) {
261
            $this->diffAndAppendRows($row, null, $appliedRowSpans, $forceExpansion);
262
        }
263
    }
264
265
    protected function processEqualOperation(Operation $operation, $oldRows, $newRows, &$appliedRowSpans)
266
    {