Skip to content

Commit

Permalink
PR feedback, bump pod version
Browse files Browse the repository at this point in the history
  • Loading branch information
EricMuller22 committed Jul 20, 2015
1 parent e81b9ac commit 08bb11c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Valet.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Valet'
s.version = '1.3'
s.version = '1.3.1'
s.license = 'Apache License, Version 2.0'
s.summary = 'Valet lets you securely store data in the iOS or OS X Keychain without knowing a thing about how the Keychain works. It\'s easy. We promise.'
s.homepage = 'https://github.com/square/Valet'
Expand Down
2 changes: 1 addition & 1 deletion Valet/VALSecureEnclaveValet.m
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ - (BOOL)canAccessKeychain;
{
// To avoid prompting the user for Touch ID or passcode, create a VALValet with our identifier and accessibility and ask it if it can access the keychain.
VALValet *noPromptValet = nil;
if (self.isSharedAcrossApplications) {
if ([self isSharedAcrossApplications]) {
noPromptValet = [[VALValet alloc] initWithSharedAccessGroupIdentifier:self.identifier accessibility:self.accessibility];
} else {
noPromptValet = [[VALValet alloc] initWithIdentifier:self.identifier accessibility:self.accessibility];
Expand Down
4 changes: 2 additions & 2 deletions Valet/VALValet.m
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ - (NSSet *)allKeys;
return [self allKeysWithOptions:nil];
}

#pragma mark - Removal
#pragma mark - Public Methods - Removal

- (BOOL)removeObjectForKey:(NSString *)key;
{
Expand All @@ -301,7 +301,7 @@ - (BOOL)removeAllObjects;
return [self removeAllObjectsWithOptions:nil];
}

#pragma mark - Migration
#pragma mark - Public Methods - Migration

- (NSError *)migrateObjectsMatchingQuery:(NSDictionary *)secItemQuery removeOnCompletion:(BOOL)remove;
{
Expand Down

0 comments on commit 08bb11c

Please sign in to comment.