Skip to content

Commit b45174e

Browse files
authored
Correct a small unnecessary chunk in Library.allClasses (#3742)
1 parent 95305c3 commit b45174e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lib/src/model/library.dart

-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ class Library extends ModelElement
343343

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

0 commit comments

Comments
 (0)