Unverified Commit b24bca13 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] add missing period to end of filter (#50038)

parent 390ed1cd
...@@ -65,7 +65,7 @@ class GenSnapshot { ...@@ -65,7 +65,7 @@ class GenSnapshot {
// Filter out gen_snapshot's warning message about stripping debug symbols // Filter out gen_snapshot's warning message about stripping debug symbols
// from ELF library snapshots. // from ELF library snapshots.
const String kStripWarning = 'Warning: Generating ELF library without DWARF debugging information.'; const String kStripWarning = 'Warning: Generating ELF library without DWARF debugging information.';
const String kAssemblyStripWarning = 'Warning: Generating assembly code without DWARF debugging information'; const String kAssemblyStripWarning = 'Warning: Generating assembly code without DWARF debugging information.';
outputFilter = (String line) => line != kStripWarning && line != kAssemblyStripWarning ? line : null; outputFilter = (String line) => line != kStripWarning && line != kAssemblyStripWarning ? line : null;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment