Skip to content

Commit

Permalink
Correct a small unnecessary chunk in Library.allClasses (#3742)
Browse files Browse the repository at this point in the history
  • Loading branch information
srawlins authored Apr 3, 2024
1 parent 95305c3 commit b45174e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/src/model/library.dart
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ class Library extends ModelElement

late final List<Class> allClasses = _exportedAndLocalElements
.whereType<ClassElement>()
.where((e) => e is! EnumElement && e is! MixinElement)
.map((e) => packageGraph.getModelFor(e, this) as Class)
.toList(growable: false);

Expand Down

0 comments on commit b45174e

Please sign in to comment.