Skip to content

Commit c1c8069

Browse files
committed
refactor: remove unnecessary moves
1 parent ea92c72 commit c1c8069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ async fn main() -> io::Result<()> {
4747
.incoming()
4848
.map_err(|e| error(format!("Incoming failed: {:?}", e)))
4949
// (base: https://github.com/cloudflare/wrangler/pull/1485/files)
50-
.filter_map(move |s| async move {
50+
.filter_map(|s| async {
5151
let client = match s {
5252
Ok(x) => x,
5353
Err(e) => {

0 commit comments

Comments
 (0)