diff --git a/src/runtime/communication.rs b/src/runtime/communication.rs index 4b55cea8d8da2020cd3d36719bcfc5694ae9df0a..3c966b92235b970a444b9a00114fc5f064d11435 100644 --- a/src/runtime/communication.rs +++ b/src/runtime/communication.rs @@ -113,10 +113,6 @@ impl Connector { None } } - // #[cfg(ffi_socket_api)] - pub(crate) fn get_mut_udp_ee(&mut self, index: usize) -> Option<&mut UdpEndpointExt> { - self.get_comm_mut()?.endpoint_manager.udp_endpoint_store.endpoint_exts.get_mut(index) - } pub fn gotten(&mut self, port: PortId) -> Result<&Payload, GottenError> { use GottenError as Ge; let comm = self.get_comm_mut().ok_or(Ge::NoPreviousRound)?;