[ios] Fix formatting

This commit is contained in:
Ryan McGrath 2023-06-08 16:01:55 -07:00
parent 3e3122f54c
commit efea9032aa
No known key found for this signature in database
GPG key ID: DA6CBD9233593DEA
5 changed files with 5 additions and 15 deletions

View file

@ -129,11 +129,7 @@ impl ClassMap {
/// > class name - but most cases do not need this and it would be a larger change to orchestrate at
/// > the moment.
#[inline(always)]
pub fn load_or_register_class<F>(
superclass_name: &'static str,
subclass_name: &'static str,
config: F
) -> *const Class
pub fn load_or_register_class<F>(superclass_name: &'static str, subclass_name: &'static str, config: F) -> *const Class
where
F: Fn(&mut ClassDecl) + 'static
{

View file

@ -28,8 +28,8 @@ mod array;
pub use array::NSArray;
mod class;
pub use class::{load_or_register_class, load_or_register_class_with_optional_generated_suffix};
pub(crate) use class::ClassMap;
pub use class::{load_or_register_class, load_or_register_class_with_optional_generated_suffix};
mod data;
pub use data::NSData;

View file

@ -10,10 +10,5 @@ use crate::foundation::load_or_register_class_with_optional_generated_suffix;
pub(crate) fn register_app_class() -> *const Class {
let should_generate_suffix = false;
load_or_register_class_with_optional_generated_suffix(
"UIApplication",
"RSTApplication",
should_generate_suffix,
|decl| {}
)
load_or_register_class_with_optional_generated_suffix("UIApplication", "RSTApplication", should_generate_suffix, |decl| {})
}

View file

@ -161,7 +161,6 @@ impl<T, W, F> App<T, W, F> {
}
}
impl<T, W, F> Drop for App<T, W, F> {
fn drop(&mut self) {
println!("DROPPING");

View file

@ -2,7 +2,7 @@ use objc::runtime::Object;
use objc::{class, msg_send, sel, sel_impl};
use objc_id::Id;
use crate::foundation::{id, NSString, ClassMap};
use crate::foundation::{id, ClassMap, NSString};
use crate::uikit::scene::SessionRole;
/// A wrapper for UISceneConfiguration.