From 0b32b5b5e837ae1cffd2bb82fd6319b21fbed6c7 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Thu, 12 Dec 2024 23:09:01 +0000 Subject: [PATCH] Restyled by whitespace --- src/app/server/Server.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/server/Server.cpp b/src/app/server/Server.cpp index 44508d15fc54c2..e19b5f8ee68748 100644 --- a/src/app/server/Server.cpp +++ b/src/app/server/Server.cpp @@ -291,21 +291,21 @@ CHIP_ERROR Server::Init(const ServerInitParams & initParams) #endif // CHIP_CONFIG_ENABLE_SERVER_IM_EVENT // SetDataModelProvider() initializes and starts the provider, which in turn - // triggers the initialization of cluster implementations. This callsite is - // critical because it ensures that cluster-level initialization occurs only + // triggers the initialization of cluster implementations. This callsite is + // critical because it ensures that cluster-level initialization occurs only // after all necessary low-level dependencies have been set up. // // Ordering guarantees: - // 1) Provider initialization (under SetDataModelProvider) must happen after - // SetSafeAttributePersistenceProvider to ensure the provider can leverage + // 1) Provider initialization (under SetDataModelProvider) must happen after + // SetSafeAttributePersistenceProvider to ensure the provider can leverage // the safe persistence provider for attribute persistence logic. - // 2) It must occur after all low-level components that cluster implementations - // might depend on have been initialized, as they rely on these components + // 2) It must occur after all low-level components that cluster implementations + // might depend on have been initialized, as they rely on these components // during their own initialization. - // 3) `InitDataModelHandler` (also under SetDataModelProvider) assumes attribute + // 3) `InitDataModelHandler` (also under SetDataModelProvider) assumes attribute // persistence and other foundational services are fully configured before it runs. // - // This remains the single point of entry to ensure that all cluster-level + // This remains the single point of entry to ensure that all cluster-level // initialization is performed in the correct order. app::InteractionModelEngine::GetInstance()->SetDataModelProvider(initParams.dataModelProvider);