mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Replace uses of forEach with for-in loops.
This commit is contained in:
@@ -1468,7 +1468,7 @@ private extension SceneCoordinator {
|
||||
func rebuildArticleDictionaries() {
|
||||
var idDictionary = [String: Article]()
|
||||
|
||||
articles.forEach { article in
|
||||
for article in articles {
|
||||
idDictionary[article.articleID] = article
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user