Skip to content

Commit

Permalink
minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesquires committed Jun 2, 2016
1 parent 319e7fb commit ad9ffce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/CoreDataStack.swift
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ public final class CoreDataStack: CustomStringConvertible, Equatable {

@objc
private func didReceiveBackgroundContextDidSaveNotification(notification: NSNotification) {
self.mainContext.performBlock {
mainContext.performBlock {
self.mainContext.mergeChangesFromContextDidSaveNotification(notification)
}
}

@objc
private func didReceiveMainContextDidSaveNotification(notification: NSNotification) {
self.backgroundContext.performBlock {
backgroundContext.performBlock {
self.backgroundContext.mergeChangesFromContextDidSaveNotification(notification)
}
}
Expand Down

0 comments on commit ad9ffce

Please sign in to comment.