summaryrefslogtreecommitdiff
path: root/ext/ffi/lib.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-03-07 17:37:37 -0400
committerGitHub <noreply@github.com>2023-03-07 22:37:37 +0100
commitb32a6f8ad20e6e4b0cc24b8256c08192b4899844 (patch)
tree76201de6fe376b658b99228c8d2ca1618181ee57 /ext/ffi/lib.rs
parent0e3affcd5b932e1b1ecc37934a0625a0d4d0d62c (diff)
refactor(core): don't use Result in ExtensionBuilder::state (#18066)
There's no point for this API to expect result. If something fails it should result in a panic during build time to signal to embedder that setup is wrong.
Diffstat (limited to 'ext/ffi/lib.rs')
-rw-r--r--ext/ffi/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/ffi/lib.rs b/ext/ffi/lib.rs
index 38a5a7eb2..e9ce2ec2e 100644
--- a/ext/ffi/lib.rs
+++ b/ext/ffi/lib.rs
@@ -151,8 +151,6 @@ pub fn init<P: FfiPermissions + 'static>(unstable: bool) -> Extension {
async_work_receiver,
async_work_sender,
});
-
- Ok(())
})
.build()
}