Fix internal Linter warnings #trivial (#340)

* Fix internal Linter warnings

* Remove explicit copy for block as let us just use the default one
This commit is contained in:
Michael Schneider
2017-06-08 19:45:03 +02:00
committed by Garrett Moon
parent 786ac15e15
commit 13c467b2f4
4 changed files with 6 additions and 6 deletions

View File

@@ -646,12 +646,12 @@ extern NSInteger const ASDefaultDrawingPriority;
#if TARGET_OS_IOS
@property (nonatomic, assign, getter=isExclusiveTouch) BOOL exclusiveTouch; // default=NO
#endif
@property (nonatomic, assign, nullable) CGColorRef shadowColor; // default=opaque rgb black
@property (nonatomic, nullable) CGColorRef shadowColor; // default=opaque rgb black
@property (nonatomic, assign) CGFloat shadowOpacity; // default=0.0
@property (nonatomic, assign) CGSize shadowOffset; // default=(0, -3)
@property (nonatomic, assign) CGFloat shadowRadius; // default=3
@property (nonatomic, assign) CGFloat borderWidth; // default=0
@property (nonatomic, assign, nullable) CGColorRef borderColor; // default=opaque rgb black
@property (nonatomic, nullable) CGColorRef borderColor; // default=opaque rgb black
// UIResponder methods
// By default these fall through to the underlying view, but can be overridden.