Skip to content

Commit

Permalink
Adhere to if-else formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
moffatman committed Sep 25, 2023
1 parent f7cdfe2 commit 5886412
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ class FrameRequestPendingLatencySummarizer {
if (id != null) {
starts[id] = event.timestampMicros!;
}
}
else if (event.phase == 'e') {
} else if (event.phase == 'e') {
final int? start = starts[event.json['id']];
if (start != null) {
result.add((event.timestampMicros! - start).toDouble());
Expand Down

0 comments on commit 5886412

Please sign in to comment.