From bda62c9d4b25b9fa4482837c405074c5b4c6a4dc Mon Sep 17 00:00:00 2001 From: Abdul Samad Date: Mon, 17 Jun 2024 11:50:25 -0500 Subject: [PATCH] Remove duplicate definition in DeviceManager --- .../fabric-bridge-app/linux/include/DeviceManager.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/examples/fabric-bridge-app/linux/include/DeviceManager.h b/examples/fabric-bridge-app/linux/include/DeviceManager.h index 31f5f4e8868153..b1dd791033511f 100644 --- a/examples/fabric-bridge-app/linux/include/DeviceManager.h +++ b/examples/fabric-bridge-app/linux/include/DeviceManager.h @@ -62,16 +62,6 @@ class DeviceManager */ int RemoveDeviceEndpoint(Device * dev); - /** - * @brief Gets a device from its endpoint ID. - * - * This function iterates through the available devices and returns the device that matches the - * specified endpoint ID. If no device matches the endpoint ID, it returns nullptr. - * - * @param endpointId The endpoint ID of the device to be retrieved. - * @return Device* A pointer to the device if found, nullptr otherwise. - */ - Device * GetDevice(chip::EndpointId endpointId) const; /** * @brief Gets a device from its endpoint ID. *