From ecf3b51fd93c36f10e7ce53e961bdeca449a955f Mon Sep 17 00:00:00 2001 From: Geert-Jan Zwiers Date: Tue, 23 Aug 2022 05:54:17 +0200 Subject: refactor(core/runtime): clean up extra type cast (#15539) --- core/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/runtime.rs b/core/runtime.rs index 4c8bf0db5..7cb566712 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -1942,7 +1942,7 @@ impl JsRuntime { let mut args = vec![]; for (promise_id, resp) in results.into_iter() { - args.push(v8::Integer::new(scope, promise_id as i32).into()); + args.push(v8::Integer::new(scope, promise_id).into()); args.push(resp.to_v8(scope).unwrap()); } -- cgit v1.2.3