Merge pull request #2781 from daboe01/fixed-wrong-return-type-in-shouldArchiveValueForKey-

fixed: wrong return type in shouldArchiveValueForKey:
This commit is contained in:
Alexandre Wilhelm
2019-02-06 16:58:25 -08:00
committed by GitHub
+2 -2
View File
@@ -61,7 +61,7 @@
Returns \c YES
@return \c YES
*/
- (void)shouldArchiveValueForKey:(CPString)aKey
- (BOOL)shouldArchiveValueForKey:(CPString)aKey
{
return YES;
}
@@ -131,4 +131,4 @@
[anObject addAnimation:self forKey:aKey];
}
@end
@end