diff options
Diffstat (limited to 'ext/broadcast_channel/lib.rs')
-rw-r--r-- | ext/broadcast_channel/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/broadcast_channel/lib.rs b/ext/broadcast_channel/lib.rs index eff57c7df..e228871b9 100644 --- a/ext/broadcast_channel/lib.rs +++ b/ext/broadcast_channel/lib.rs @@ -45,8 +45,6 @@ struct Unstable(bool); // --unstable #[op] pub fn op_broadcast_subscribe<BC>( state: &mut OpState, - _: (), - _: (), ) -> Result<ResourceId, AnyError> where BC: BroadcastChannel + 'static, @@ -97,7 +95,6 @@ where pub async fn op_broadcast_recv<BC>( state: Rc<RefCell<OpState>>, rid: ResourceId, - _: (), ) -> Result<Option<Message>, AnyError> where BC: BroadcastChannel + 'static, |