File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
lib/src/generate_screen_access Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ Future<void> generateScreenAccess({
62
62
);
63
63
64
64
// 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 )) {
67
67
final filePath = filePathResult.path;
68
68
69
69
// Extract insights from the file.
@@ -73,8 +73,7 @@ Future<void> generateScreenAccess({
73
73
);
74
74
75
75
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.
78
77
// await generatorConverger.converge(
79
78
// classInsights,
80
79
// [template],
You can’t perform that action at this time.
0 commit comments