diff --git a/deltachat-ffi/src/lib.rs b/deltachat-ffi/src/lib.rs index 3bf55f8c0..0a7b9e832 100644 --- a/deltachat-ffi/src/lib.rs +++ b/deltachat-ffi/src/lib.rs @@ -109,10 +109,6 @@ impl ContextWrapper { /// the appropriate return value for an error return since this /// differs for various functions on the FFI API: sometimes 0, /// NULL, an empty string etc. - /// - /// Prefer to use [ContextWrapper::try_inner], we might want to - /// remove this function at some point to reduce the cognitive - /// overload of having two functions which are too similar. unsafe fn with_inner(&self, ctxfn: F) -> Result where F: FnOnce(&Context) -> T,