Skip to content

Commit

Permalink
Merge pull request #5 from pixlee/mo/bug_fixes
Browse files Browse the repository at this point in the history
removing logs
  • Loading branch information
firetix authored Jul 13, 2019
2 parents 54b0566 + 50d9564 commit a4b63fc
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions pixlee_sdk/PXLAlbumFilterOptions.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,53 +22,46 @@ @implementation PXLAlbumFilterOptions


- (void)setDeniedPhotos:(BOOL)deniedPhotos{
NSLog(@"Setting bool to %s", deniedPhotos ? "true" : "false");
_deniedPhotos = deniedPhotos;
self.flagDeniedPhotos = true;
}



- (void)setStarredPhotos:(BOOL)starredPhotos{
NSLog(@"Setting bool to %s", starredPhotos ? "true" : "false");
_starredPhotos = starredPhotos;
self.flagStarredPhotos = true;
}

- (void)setDeletedPhotos:(BOOL)deletedPhotos{
NSLog(@"Setting bool to %s", deletedPhotos ? "true" : "false");
_deletedPhotos = deletedPhotos;
self.flagDeletedPhotos = true;
}

- (void)setFlaggedPhotos:(BOOL)flaggedPhotos{
NSLog(@"Setting bool to %s", flaggedPhotos ? "true" : "false");

_flaggedPhotos = flaggedPhotos;
self.flagFlaggedPhotos = true;
}


- (void)setHasPermission:(BOOL)hasPermission{
NSLog(@"Setting bool to %s", hasPermission ? "true" : "false");
_hasPermission = hasPermission;
self.flagHasPermission = true;
}


- (void)setHasProduct:(BOOL)hasProduct{
NSLog(@"Setting bool to %s", hasProduct ? "true" : "false");
_hasProduct = hasProduct;
self.flagHasProduct = true;
}

- (void)setInStockOnly:(BOOL)inStockOnly{
NSLog(@"Setting bool to %s", inStockOnly ? "true" : "false");
_inStockOnly = inStockOnly;
self.flagInStockOnly = true;
}

- (void)setHasActionLink:(BOOL)hasActionLink{
NSLog(@"Setting bool to %s", hasActionLink ? "true" : "false");
_hasActionLink = hasActionLink;
self.flagHasActionLink = true;
}
Expand Down

0 comments on commit a4b63fc

Please sign in to comment.