Skip to content

Commit e54bb2f

Browse files
committed
Update
1 parent 62b2b59 commit e54bb2f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lib/src/generate_screen_access/generator.dart

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ Future<void> generateScreenAccess({
6262
);
6363

6464
// For each file...
65-
for (final filePathResult in sourceFileExplorerResults.filePathResults
66-
.where((e) => e.category == _Categories.DART)) {
65+
for (final filePathResult
66+
in sourceFileExplorerResults.filePathResults.where((e) => e.category == _Categories.DART)) {
6767
final filePath = filePathResult.path;
6868

6969
// Extract insights from the file.
@@ -73,8 +73,7 @@ Future<void> generateScreenAccess({
7373
);
7474

7575
if (classInsights.isNotEmpty) {
76-
printRed(classInsights.map((e) => e.className));
77-
// // Converge what was gathered to generate the output.
76+
// Converge what was gathered to generate the output.
7877
// await generatorConverger.converge(
7978
// classInsights,
8079
// [template],

0 commit comments

Comments
 (0)