Skip to content

Commit f3ec3f2

Browse files
committed
Various minor changes
1 parent 285fda8 commit f3ec3f2

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

WordPress/Classes/Services/BlogService.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#import "CommentService.h"
1010
#import "PostService.h"
1111
#import "TodayExtensionService.h"
12-
#import "CoreDataStack.h"
1312
#import "WordPress-Swift.h"
1413
#import "PostType.h"
1514
@import WordPressKit;

WordPress/Classes/Utility/ContextManager.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Foundation
22
import CoreData
33

4-
///A constant representing the current version of the data model.
4+
/// A constant representing the current version of the data model.
55
///
66
/// - SeeAlso: ContextManager.init(modelName:store:)
77
let ContextManagerModelNameCurrent = "$CURRENT"
@@ -110,7 +110,7 @@ private extension ContextManager {
110110
}
111111
}
112112

113-
/// Ensure that the `context`'s concurrency type is not `confinementConcurrencyType`, since it will crash if `perform` or `performAndWait` is called.
113+
// Ensure that the `context`'s concurrency type is not `confinementConcurrencyType`, since it will crash if `perform` or `performAndWait` is called.
114114
guard context.concurrencyType == .mainQueueConcurrencyType || context.concurrencyType == .privateQueueConcurrencyType else {
115115
block()
116116
return

WordPress/WordPressTest/CoreDataTestCase.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import XCTest
2-
32
import WordPress
43

54
/// A `XCTestCase` subclass which manages a mock implementation of `CoreDataStack`. Inherit

0 commit comments

Comments
 (0)