Skip to content

Commit 073a478

Browse files
committed
Cut redundant suppression
1 parent 11bc0fc commit 073a478

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

lib/jblond/Diff/SequenceMatcher.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -437,11 +437,6 @@ public function getMatchingBlocks(): array
437437
$matchingBlocks = [];
438438
while (!empty($queue)) {
439439
[$aLower, $aUpper, $bLower, $bUpper] = array_pop($queue);
440-
/**
441-
* @noinspection PhpStrictTypeCheckingInspection
442-
* $aLower, $aUpper, $bLower, $bUpper reported as wrong type because of multiple definitions of function
443-
* count above.
444-
*/
445440
$longestMatch = $this->findLongestMatch($aLower, $aUpper, $bLower, $bUpper);
446441
[$list1, $list2, $list3] = $longestMatch;
447442
if ($list3) {

0 commit comments

Comments
 (0)