Remove unneeded import RSDatabase from Account.
This commit is contained in:
parent
cb45897256
commit
908ae515c0
|
@ -12,10 +12,8 @@ import Articles
|
||||||
import RSParser
|
import RSParser
|
||||||
import ArticlesDatabase
|
import ArticlesDatabase
|
||||||
import RSWeb
|
import RSWeb
|
||||||
import RSDatabase
|
|
||||||
|
|
||||||
public extension Notification.Name {
|
public extension Notification.Name {
|
||||||
|
|
||||||
static let AccountRefreshDidBegin = Notification.Name(rawValue: "AccountRefreshDidBegin")
|
static let AccountRefreshDidBegin = Notification.Name(rawValue: "AccountRefreshDidBegin")
|
||||||
static let AccountRefreshDidFinish = Notification.Name(rawValue: "AccountRefreshDidFinish")
|
static let AccountRefreshDidFinish = Notification.Name(rawValue: "AccountRefreshDidFinish")
|
||||||
static let AccountRefreshProgressDidChange = Notification.Name(rawValue: "AccountRefreshProgressDidChange")
|
static let AccountRefreshProgressDidChange = Notification.Name(rawValue: "AccountRefreshProgressDidChange")
|
||||||
|
@ -25,7 +23,6 @@ public extension Notification.Name {
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum AccountType: Int {
|
public enum AccountType: Int {
|
||||||
|
|
||||||
// Raw values should not change since they’re stored on disk.
|
// Raw values should not change since they’re stored on disk.
|
||||||
case onMyMac = 1
|
case onMyMac = 1
|
||||||
case feedly = 16
|
case feedly = 16
|
||||||
|
@ -37,7 +34,6 @@ public enum AccountType: Int {
|
||||||
|
|
||||||
public final class Account: DisplayNameProvider, UnreadCountProvider, Container, Hashable {
|
public final class Account: DisplayNameProvider, UnreadCountProvider, Container, Hashable {
|
||||||
|
|
||||||
|
|
||||||
public struct UserInfoKey {
|
public struct UserInfoKey {
|
||||||
public static let newArticles = "newArticles" // AccountDidDownloadArticles
|
public static let newArticles = "newArticles" // AccountDidDownloadArticles
|
||||||
public static let updatedArticles = "updatedArticles" // AccountDidDownloadArticles
|
public static let updatedArticles = "updatedArticles" // AccountDidDownloadArticles
|
||||||
|
|
Loading…
Reference in New Issue