diff --git a/src/meta_plugin/system.rs b/src/meta_plugin/system.rs index df60e14..69e7ca4 100644 --- a/src/meta_plugin/system.rs +++ b/src/meta_plugin/system.rs @@ -64,13 +64,6 @@ impl MetaPlugin for CwdMetaPlugin { } } - fn update(&mut self, _data: &[u8]) -> MetaPluginResponse { - MetaPluginResponse { - metadata: Vec::new(), - is_finalized: false, - } - } - fn meta_name(&self) -> String { self.meta_name.clone() } @@ -109,10 +102,6 @@ impl MetaPlugin for CwdMetaPlugin { vec!["cwd".to_string()] } - fn default_options(&self) -> std::collections::HashMap { - std::collections::HashMap::new() - } - fn options(&self) -> &std::collections::HashMap { &self.options }