Fix wrong assertion

This commit is contained in:
Li Tan
2015-02-25 19:37:22 -08:00
parent ea13585ab0
commit e862e04b05

View File

@@ -399,7 +399,7 @@ static BOOL _isInterceptedSelector(SEL sel)
- (void)dataControllerUnlockDataSource
{
ASDisplayNodeAssert(!self.asyncDataSourceLocked, @"The data source has alredy been unlocked !");
ASDisplayNodeAssert(self.asyncDataSourceLocked, @"The data source has alredy been unlocked !");
self.asyncDataSourceLocked = NO;
if ([_asyncDataSource respondsToSelector:@selector(collectionViewUnlockDataSource:)]) {