Skip to content

Commit 3f8fea0

Browse files
committed
Delete 2 No-longer-needed Comments
1 parent d433504 commit 3f8fea0

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/PhpSpreadsheet/Writer/Ods/Content.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ private function writeCells(XMLWriter $objWriter, RowCellIterator $cells): void
233233
$matrixColSpan = 1;
234234
if (isset($matches[3])) {
235235
$minRow = (int) $matches[2];
236-
// https://github.com/phpstan/phpstan/issues/11602
237236
$maxRow = (int) $matches[5];
238237
$matrixRowSpan = $maxRow - $minRow + 1;
239238
$minCol = Coordinate::columnIndexFromString($matches[1]);

src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,6 @@ private function parseRef(string $coordinate, string $ref): string
15431543
return $coordinate;
15441544
}
15451545
$minRow = (int) $matches[2];
1546-
// https://github.com/phpstan/phpstan/issues/11602
15471546
$maxRow = (int) $matches[5];
15481547
$rows = $maxRow - $minRow + 1;
15491548
$minCol = Coordinate::columnIndexFromString($matches[1]);

0 commit comments

Comments
 (0)