Skip to content

Commit a09a9b4

Browse files
committed
Remove useless async/await.
1 parent 161b8e9 commit a09a9b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/github/comparison_summary.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ async fn summarize_run(
166166
));
167167

168168
let (primary, secondary) = comparison.summarize_by_category(&benchmark_map);
169-
table_written |= write_metric_summary(primary, secondary, hidden, &mut message).await;
169+
table_written |= write_metric_summary(primary, secondary, hidden, &mut message);
170170
}
171171

172172
if table_written {
@@ -186,7 +186,7 @@ async fn summarize_run(
186186
}
187187

188188
/// Returns true if a summary table was written to `message`.
189-
async fn write_metric_summary(
189+
fn write_metric_summary(
190190
primary: ArtifactComparisonSummary,
191191
secondary: ArtifactComparisonSummary,
192192
hidden: bool,

0 commit comments

Comments
 (0)