Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EncryptedStore: Fixed not throwing error in Swift #315

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

scottlevie
Copy link

• When an Objective-C method ends with a parameter that is a pointer to an error, it is imported to Swift as a method that throws. However, the error will only be thrown if the return value is either nil or false. All the public methods ending with an error pointer parameter were checked for this flaw. Only these three needed correction:

  • (NSPersistentStoreCoordinator *)coordinator:byAddingStoreAtURL:configuration:options:error:
  • (NSPersistentStoreCoordinator *)makeStoreWithOptions:managedObjectModel:error:
  • (NSPersistentStoreDescription *)makeDescriptionWithOptions:configuration:error:

• When an Objective-C method ends with a parameter that is a pointer to an error, it is imported to Swift as a method that throws. However, the error will only be thrown if the return value is either nil or false. All the public methods ending with an error pointer parameter were checked for this flaw. Only these three needed correction:
+ (NSPersistentStoreCoordinator *)coordinator:byAddingStoreAtURL:configuration:options:error:
+ (NSPersistentStoreCoordinator *)makeStoreWithOptions:managedObjectModel:error:
+ (NSPersistentStoreDescription *)makeDescriptionWithOptions:configuration:error:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant