File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
lib/src/generate_screen_access Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ Future<void> generateScreenAccess({
44
44
);
45
45
final sourceFileExplorerResults = await sourceFileExporer.explore ();
46
46
47
- printYellow (sourceFileExplorerResults.filePathResults.map ((e) => e.path));
48
-
49
47
// final template = extractCodeFromMarkdown(
50
48
// await loadFileFromGitHub(
51
49
// username: 'robmllze',
@@ -65,8 +63,8 @@ Future<void> generateScreenAccess({
65
63
);
66
64
67
65
// For each file...
68
- for (final filePathResult in sourceFileExplorerResults.filePathResults
69
- .where ((e) => e.category == _Categories .DART )) {
66
+ for (final filePathResult
67
+ in sourceFileExplorerResults.filePathResults .where ((e) => e.category == _Categories .DART )) {
70
68
final filePath = filePathResult.path;
71
69
72
70
// Extract insights from the file.
@@ -75,10 +73,6 @@ Future<void> generateScreenAccess({
75
73
filePath,
76
74
);
77
75
78
- printRed (filePath);
79
- debugLogAlert (filePath);
80
- debugLogAlert (classInsights.length);
81
-
82
76
if (classInsights.isNotEmpty) {
83
77
printRed (classInsights.map ((e) => e.className));
84
78
// // Converge what was gathered to generate the output.
You can’t perform that action at this time.
0 commit comments