Skip to content

Commit

Permalink
Fixing incorrect return type warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bosborn committed Feb 12, 2016
1 parent c1da0a8 commit b64117e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geopackage-ios/tiles/overlay/GPKGBoundedOverlay.m
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ -(BOOL) hasTileWithX: (NSInteger) x andY: (NSInteger) y andZoom: (NSInteger) zoo

-(BOOL) hasTileToRetrieveWithX: (NSInteger) x andY: (NSInteger) y andZoom: (NSInteger) zoom{
[self doesNotRecognizeSelector:_cmd];
return nil;
return false;
}

-(NSData *) retrieveTileWithX: (NSInteger) x andY: (NSInteger) y andZoom: (NSInteger) zoom{
Expand Down

0 comments on commit b64117e

Please sign in to comment.