diff --git a/Shared/Extensions/NSAttributedString+NetNewsWire.swift b/Shared/Extensions/NSAttributedString+NetNewsWire.swift index 3c4cdd0db..15cd4ba00 100644 --- a/Shared/Extensions/NSAttributedString+NetNewsWire.swift +++ b/Shared/Extensions/NSAttributedString+NetNewsWire.swift @@ -293,7 +293,7 @@ extension NSAttributedString { } /// This is a very, very basic implementation that only covers our needs. -struct CountedSet where Element: Hashable { +private struct CountedSet where Element: Hashable { private var _storage = [Element: Int]() mutating func insert(_ element: Element) { @@ -323,7 +323,7 @@ struct CountedSet where Element: Hashable { } } -extension String { +private extension String { var decodedEntity: String { (self as NSString).rsparser_stringByDecodingHTMLEntities() as String }