diff --git a/ica-rs/src/data_struct/files.rs b/ica-rs/src/data_struct/files.rs index 97a807e..f5739d8 100644 --- a/ica-rs/src/data_struct/files.rs +++ b/ica-rs/src/data_struct/files.rs @@ -19,10 +19,6 @@ pub struct MessageFile { } impl MessageFile { - pub fn get_name(&self) -> Option<&String> { - self.name.as_ref() - } - pub fn get_fid(&self) -> Option<&String> { - self.fid.as_ref() - } + pub fn get_name(&self) -> Option<&String> { self.name.as_ref() } + pub fn get_fid(&self) -> Option<&String> { self.fid.as_ref() } }