From dc54c7f7bed934d7fed2362d6e7eb8ecfa38ee06 Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Tue, 5 Oct 2021 15:13:03 -0700 Subject: [PATCH] Remove accidental print (#91317) --- .../flutter_tools/test/commands.shard/permeable/create_test.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/flutter_tools/test/commands.shard/permeable/create_test.dart b/packages/flutter_tools/test/commands.shard/permeable/create_test.dart index f0275e92c0e..7bc8bda11c4 100755 --- a/packages/flutter_tools/test/commands.shard/permeable/create_test.dart +++ b/packages/flutter_tools/test/commands.shard/permeable/create_test.dart @@ -2722,7 +2722,6 @@ Future _analyzeProject(String workingDir, { List expectedFailures } expect(exec.exitCode, isNot(0)); String lineParser(String line) { - print('#$line#'); final String analyzerSeparator = globals.platform.isWindows ? ' - ' : ' • '; final List lineComponents = line.trim().split(analyzerSeparator); final String lintName = lineComponents.removeLast();