From 340e286277530646004285009bcc2bba25df6695 Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sun, 14 Oct 2018 13:27:38 +0200 Subject: [PATCH] fixed: wrong return type in shouldArchiveValueForKey: --- AppKit/CoreAnimation/CAAnimation.j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/CoreAnimation/CAAnimation.j b/AppKit/CoreAnimation/CAAnimation.j index 77c53745b..d22380bd5 100644 --- a/AppKit/CoreAnimation/CAAnimation.j +++ b/AppKit/CoreAnimation/CAAnimation.j @@ -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 \ No newline at end of file +@end