diff --git a/divvunspell/src/speller/mod.rs b/divvunspell/src/speller/mod.rs index bc14c62..401046d 100644 --- a/divvunspell/src/speller/mod.rs +++ b/divvunspell/src/speller/mod.rs @@ -419,9 +419,7 @@ pub(crate) mod ffi { >, #[marshal(cursed::StrMarshaler)] word: &str, ) -> Vec { - let suggestions = speller.suggest(word); - println!("{:?} {:?}", &suggestions, &suggestions as *const _); - suggestions + speller.suggest(word) } #[cthulhu::invoke(return_marshaler = "SuggestionVecMarshaler")] @@ -448,9 +446,7 @@ pub(crate) mod ffi { #[marshal(cursed::ArcRefMarshaler::)] speller: Arc, #[marshal(cursed::StrMarshaler)] word: &str, ) -> Vec { - let suggestions = speller.suggest(word); - println!("{:?} {:?}", &suggestions, &suggestions as *const _); - suggestions + speller.suggest(word) } #[cthulhu::invoke(return_marshaler = "SuggestionVecMarshaler")]