Skip to content

Commit 457ae22

Browse files
committed
run dartfmt
1 parent 68fbae0 commit 457ae22

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/live_code_size_analysis.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ main(args) async {
7373
var name = f.name;
7474
if (name.contains('.')) name = name.substring(name.lastIndexOf('.') + 1);
7575
var otherName = data['name'];
76-
if (otherName.contains('.')) otherName = otherName.substring(otherName.lastIndexOf('.') + 1);
76+
if (otherName.contains('.')) {
77+
otherName = otherName.substring(otherName.lastIndexOf('.') + 1);
78+
}
7779
if (otherName != name && otherName != '') {
7880
print('invalid coverage: $data for $f, ($name vs $otherName)');
7981
}

0 commit comments

Comments
 (0)