Skip to content

Commit 49d8abf

Browse files
committed
Update
1 parent 3106ede commit 49d8abf

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

lib/src/generate_screen_access/generator.dart

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ Future<void> generateScreenAccess({
4444
);
4545
final sourceFileExplorerResults = await sourceFileExporer.explore();
4646

47-
printYellow(sourceFileExplorerResults.filePathResults.map((e) => e.path));
48-
4947
// final template = extractCodeFromMarkdown(
5048
// await loadFileFromGitHub(
5149
// username: 'robmllze',
@@ -65,8 +63,8 @@ Future<void> generateScreenAccess({
6563
);
6664

6765
// 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)) {
7068
final filePath = filePathResult.path;
7169

7270
// Extract insights from the file.
@@ -75,10 +73,6 @@ Future<void> generateScreenAccess({
7573
filePath,
7674
);
7775

78-
printRed(filePath);
79-
debugLogAlert(filePath);
80-
debugLogAlert(classInsights.length);
81-
8276
if (classInsights.isNotEmpty) {
8377
printRed(classInsights.map((e) => e.className));
8478
// // Converge what was gathered to generate the output.

0 commit comments

Comments
 (0)