More cleanup, less unwrap() (#35249)

Signed-off-by: webbeef <me@webbeef.org>
This commit is contained in:
webbeef 2025-02-01 05:00:22 -08:00 committed by GitHub
parent 3122de08f3
commit 6fd63b6c7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 40 additions and 40 deletions

View file

@ -58,6 +58,10 @@ impl Window {
Rc::new(window)
}
pub fn new_uninit() -> Rc<dyn WindowPortsMethods> {
Self::new(Default::default(), None, None)
}
}
impl WindowPortsMethods for Window {