Skip to content

Commit 294dc18

Browse files
Add some braces that went missing while applying review suggestions. (project-chip#33699)
1 parent e0bdb09 commit 294dc18

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/darwin/Framework/CHIP/MTRDevice.mm

+2-1
Original file line numberDiff line numberDiff line change
@@ -3097,8 +3097,9 @@ - (void)_pruneClustersIn:(MTRDeviceDataValueDictionary)previousServerListValue
30973097

30983098
NSMutableSet<MTRClusterPath *> * clusterPathsToRemove = [[NSMutableSet alloc] init];
30993099
for (MTRClusterPath * path in _persistedClusters) {
3100-
if ([path.endpoint isEqualToNumber:endpointID] && [toBeRemovedClusters containsObject:path.cluster])
3100+
if ([path.endpoint isEqualToNumber:endpointID] && [toBeRemovedClusters containsObject:path.cluster]) {
31013101
[clusterPathsToRemove addObject:path];
3102+
}
31023103
}
31033104
[self _removeClusters:clusterPathsToRemove doRemoveFromDataStore:YES];
31043105
}

0 commit comments

Comments
 (0)