From 5432750e4a1846850bff9ee11374378efdca0984 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Thu, 29 Feb 2024 17:50:20 -0500 Subject: [PATCH] Clean up some includes in DataModelHandler (#32381) * Clean up some includes in DataModelHandler Clean up includes and useless file comment. Overall the naming of this file is somewhat questionable as it contains a single init call. Still looking to determine if we should rename (we probably should). * Add back a missing header --- src/app/util/DataModelHandler.cpp | 6 ------ src/app/util/DataModelHandler.h | 12 ------------ 2 files changed, 18 deletions(-) diff --git a/src/app/util/DataModelHandler.cpp b/src/app/util/DataModelHandler.cpp index 8a37bd4cd7f5a9..6a4f7659bb3d33 100644 --- a/src/app/util/DataModelHandler.cpp +++ b/src/app/util/DataModelHandler.cpp @@ -14,12 +14,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - -/** - * @file - * This file implements the handler for data model messages. - */ - #include #include diff --git a/src/app/util/DataModelHandler.h b/src/app/util/DataModelHandler.h index 025d9b56f76fe2..d1ad0c2a61c051 100644 --- a/src/app/util/DataModelHandler.h +++ b/src/app/util/DataModelHandler.h @@ -14,22 +14,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - -/** - * @file - * This file defines the API for the handler for data model messages. - */ - #pragma once -#include -#include -#include -#include - /** * Initialize the data model internal code to be ready to send and receive * data model messages. - * */ void InitDataModelHandler();