diff --git a/packages/ownable/src/lib.rs b/packages/ownable/src/lib.rs index 1fab6ce..5f28aed 100644 --- a/packages/ownable/src/lib.rs +++ b/packages/ownable/src/lib.rs @@ -344,7 +344,6 @@ impl Ownership { } } -// This is a nice helper, maybe move to dedicated utils package? fn none_or(or: Option<&T>) -> String { or.map_or_else(|| "none".to_string(), |or| or.to_string()) }