Skip to content

Commit

Permalink
Update src/darwin/Framework/CHIP/MTRDevice.mm
Browse files Browse the repository at this point in the history
Co-authored-by: Boris Zbarsky <[email protected]>
  • Loading branch information
jtung-apple and bzbarsky-apple authored Apr 11, 2024
1 parent 9631f2a commit ae5a3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/darwin/Framework/CHIP/MTRDevice.mm
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ - (BOOL)isEqualToClusterData:(MTRDeviceClusterData *)otherClusterData

- (BOOL)isEqual:(id)object
{
if (![object isKindOfClass:[MTRDeviceClusterData class]]) {
if ([object class] != [self class]) {
return NO;
}

Expand Down

0 comments on commit ae5a3e1

Please sign in to comment.