Skip to content

Commit 4e2245b

Browse files
authored
ECOINFO address post merge comment for small fix (project-chip#34846)
1 parent 09925c3 commit 4e2245b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/clusters/ecosystem-information-server/ecosystem-information-server.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,11 @@ CHIP_ERROR EcosystemInformationServer::ReadAttribute(const ConcreteReadAttribute
282282
switch (aPath.mAttributeId)
283283
{
284284
case Attributes::RemovedOn::Id:
285-
return EcosystemInformationServer::Instance().EncodeRemovedOnAttribute(aPath.mEndpointId, aEncoder);
285+
return EncodeRemovedOnAttribute(aPath.mEndpointId, aEncoder);
286286
case Attributes::DeviceDirectory::Id:
287-
return EcosystemInformationServer::Instance().EncodeDeviceDirectoryAttribute(aPath.mEndpointId, aEncoder);
287+
return EncodeDeviceDirectoryAttribute(aPath.mEndpointId, aEncoder);
288288
case Attributes::LocationDirectory::Id:
289-
return EcosystemInformationServer::Instance().EncodeLocationStructAttribute(aPath.mEndpointId, aEncoder);
289+
return EncodeLocationStructAttribute(aPath.mEndpointId, aEncoder);
290290
case Attributes::ClusterRevision::Id: {
291291
uint16_t rev = ZCL_ECOSYSTEM_INFORMATION_CLUSTER_REVISION;
292292
return aEncoder.Encode(rev);

0 commit comments

Comments
 (0)