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

This commit is contained in:
Jonah Williams 2020-02-03 14:33:08 -08:00 committed by GitHub
parent 390ed1cd81
commit b24bca1383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ class GenSnapshot {
// Filter out gen_snapshot's warning message about stripping debug symbols
// from ELF library snapshots.
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;
}