Skip to content

Commit 0129842

Browse files
committed
dartfmt
1 parent 41675cf commit 0129842

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/src/model.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4602,9 +4602,7 @@ class Package extends LibraryContainer implements Comparable<Package>, Privacy {
46024602
List<LibraryContainer> _categories;
46034603
List<LibraryContainer> get categories {
46044604
if (_categories == null) {
4605-
_categories = nameToCategory.values
4606-
.where((c) => c.name != null)
4607-
.toList()
4605+
_categories = nameToCategory.values.where((c) => c.name != null).toList()
46084606
..sort();
46094607
}
46104608
return _categories;

0 commit comments

Comments
 (0)