Remove outdated comment (#126927)

Follow-up to https://github.com/flutter/flutter/pull/126647#discussion_r1195417860.
This commit is contained in:
Michael Goderbauer 2023-05-16 19:39:12 +02:00 committed by GitHub
parent 130944e785
commit 1ca183d55b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1009,7 +1009,7 @@ class FlutterError extends Error with DiagnosticableTreeMixin implements Asserti
isInDebugMode = true; isInDebugMode = true;
return true; return true;
}()); }());
final bool reportError = isInDebugMode || !details.silent; // could be null final bool reportError = isInDebugMode || !details.silent;
if (!reportError && !forceReport) { if (!reportError && !forceReport) {
return; return;
} }