Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and nivi-apple committed May 31, 2024
1 parent 4c4f573 commit 6be9686
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/darwin/Framework/CHIP/MTRDevice.mm
Original file line number Diff line number Diff line change
Expand Up @@ -3095,11 +3095,11 @@ - (void)_pruneClustersIn:(MTRDeviceDataValueDictionary)previousServerListValue
NSMutableSet<MTRClusterPath *> * clusterPathsToRemove = [[NSMutableSet alloc] init];
for (MTRClusterPath * path in _persistedClusters) {
if ([path.endpoint isEqualToNumber:endpointID] && [toBeRemovedClusters containsObject:path.cluster])
[clusterPathsToRemove addObject:path];
}
}
[clusterPathsToRemove addObject:path];
}
[self _removeClusters:clusterPathsToRemove doRemoveFromDataStore:YES];
}
}
[self _removeClusters:clusterPathsToRemove doRemoveFromDataStore:YES];
}

- (void)_pruneAttributesIn:(MTRDeviceDataValueDictionary)previousAttributeListValue
Expand Down

0 comments on commit 6be9686

Please sign in to comment.