@@ -772,8 +772,6 @@ - (void)_ensureSubscriptionForExistingDelegates:(NSString *)reason
772
772
} errorHandler: nil ];
773
773
}
774
774
}
775
-
776
- [self _notifyDelegateOfPrivateInternalPropertiesChanges ];
777
775
}
778
776
779
777
- (void )invalidate
@@ -1247,7 +1245,6 @@ - (void)_handleResubscriptionNeededWithDelayOnDeviceQueue:(NSNumber *)resubscrip
1247
1245
std::lock_guard lock (_descriptionLock);
1248
1246
_lastSubscriptionFailureTimeForDescription = _lastSubscriptionFailureTime;
1249
1247
}
1250
- [self _notifyDelegateOfPrivateInternalPropertiesChanges ];
1251
1248
BOOL deviceUsesThread = [self _deviceUsesThread ];
1252
1249
1253
1250
// If a previous resubscription failed, remove the item from the subscription pool.
@@ -1325,7 +1322,6 @@ - (void)_doHandleSubscriptionReset:(NSNumber * _Nullable)retryDelay
1325
1322
std::lock_guard lock (_descriptionLock);
1326
1323
_lastSubscriptionFailureTimeForDescription = _lastSubscriptionFailureTime;
1327
1324
}
1328
- [self _notifyDelegateOfPrivateInternalPropertiesChanges ];
1329
1325
1330
1326
// if there is no delegate then also do not retry
1331
1327
if (![self _delegateExists ]) {
@@ -1700,8 +1696,6 @@ - (void)_scheduleClusterDataPersistence
1700
1696
}
1701
1697
}
1702
1698
1703
- [self _notifyDelegateOfPrivateInternalPropertiesChanges ];
1704
-
1705
1699
// Do not schedule persistence if device is reporting excessively
1706
1700
if ([self _deviceIsReportingExcessively ]) {
1707
1701
return ;
@@ -1767,6 +1761,7 @@ - (void)_handleReportEnd
1767
1761
[delegate deviceConfigurationChanged: self ];
1768
1762
}
1769
1763
}];
1764
+ [self _notifyDelegateOfPrivateInternalPropertiesChanges ];
1770
1765
_deviceConfigurationChanged = NO ;
1771
1766
}
1772
1767
@@ -1781,6 +1776,7 @@ - (void)_handleReportEnd
1781
1776
// all the data for the device now.
1782
1777
_deviceCachePrimed = YES ;
1783
1778
[self _callDelegateDeviceCachePrimed ];
1779
+ [self _notifyDelegateOfPrivateInternalPropertiesChanges ];
1784
1780
}
1785
1781
1786
1782
// For unit testing only
@@ -1791,8 +1787,6 @@ - (void)_handleReportEnd
1791
1787
}
1792
1788
}];
1793
1789
#endif
1794
-
1795
- [self _notifyDelegateOfPrivateInternalPropertiesChanges ];
1796
1790
}
1797
1791
1798
1792
- (BOOL )_interestedPaths : (NSArray * _Nullable)interestedPaths includesAttributePath : (MTRAttributePath *)attributePath
0 commit comments