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 woody-apple committed Jun 1, 2024
1 parent 49b1b11 commit e568497
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 @@ -3097,11 +3097,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 e568497

Please sign in to comment.