Skip to content

Commit dbc7f95

Browse files
committed
chore(collection): remove redundant docblock comment
Signed-off-by: azjezz <[email protected]>
1 parent 5d7e4f2 commit dbc7f95

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/Psl/Collection/MutableSet.php

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -679,15 +679,7 @@ public function slice(int $start, null|int $length = null): MutableSet
679679
#[\Override]
680680
public function chunk(int $size): MutableVector
681681
{
682-
return MutableVector::fromArray(Vec\map(
683-
Vec\chunk($this->toArray(), $size),
684-
/**
685-
* @param list<T> $chunk
686-
*
687-
* @return MutableSet<T>
688-
*/
689-
MutableSet::fromArray(...),
690-
));
682+
return MutableVector::fromArray(Vec\map(Vec\chunk($this->toArray(), $size), MutableSet::fromArray(...)));
691683
}
692684

693685
/**

0 commit comments

Comments
 (0)