Remove accidental print (#91317)

This commit is contained in:
Michael Goderbauer 2021-10-05 15:13:03 -07:00 committed by GitHub
parent 8405868db4
commit dc54c7f7be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2722,7 +2722,6 @@ Future<void> _analyzeProject(String workingDir, { List<String> expectedFailures
}
expect(exec.exitCode, isNot(0));
String lineParser(String line) {
print('#$line#');
final String analyzerSeparator = globals.platform.isWindows ? ' - ' : '';
final List<String> lineComponents = line.trim().split(analyzerSeparator);
final String lintName = lineComponents.removeLast();