Skip to content

Commit

Permalink
Backport #185
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmoon committed Apr 22, 2016
1 parent fe81a3d commit ea15d2b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Pod/Classes/PINRemoteImageManagerResult.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ typedef NS_ENUM(NSUInteger, PINRemoteImageResultType) {
@property (nonatomic, readonly, assign) CGFloat renderedImageQuality;

+ (nonnull instancetype)imageResultWithImage:(nullable PINImage *)image
alternativeRepresentation:(nullable id)alternativeRepresentation
requestLength:(NSTimeInterval)requestLength
error:(nullable NSError *)error
resultType:(PINRemoteImageResultType)resultType
UUID:(nullable NSUUID *)uuid;
animatedImage:(nullable FLAnimatedImage *)animatedImage
requestLength:(NSTimeInterval)requestLength
error:(nullable NSError *)error
resultType:(PINRemoteImageResultType)resultType
UUID:(nullable NSUUID *)uuid;

+ (nonnull instancetype)imageResultWithImage:(nullable PINImage *)image
animatedImage:(nullable FLAnimatedImage *)animatedImage
Expand Down
4 changes: 2 additions & 2 deletions Pod/Classes/PINRemoteImageManagerResult.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ + (instancetype)imageResultWithImage:(PINImage *)image
UUID:(NSUUID *)uuid
{
return [self imageResultWithImage:image
alternativeRepresentation:alternativeRepresentation
animatedImage:animatedImage
requestLength:requestLength
error:error
resultType:resultType
Expand All @@ -27,7 +27,7 @@ + (instancetype)imageResultWithImage:(PINImage *)image
}

+ (instancetype)imageResultWithImage:(PINImage *)image
alternativeRepresentation:(id)alternativeRepresentation
animatedImage:(nullable FLAnimatedImage *)animatedImage
requestLength:(NSTimeInterval)requestLength
error:(NSError *)error
resultType:(PINRemoteImageResultType)resultType
Expand Down

0 comments on commit ea15d2b

Please sign in to comment.