diff --git a/Evergreen/ArticleStyles/ArticleStyle.swift b/Evergreen/ArticleStyles/ArticleStyle.swift index f960bc446..a9a82548e 100644 --- a/Evergreen/ArticleStyles/ArticleStyle.swift +++ b/Evergreen/ArticleStyles/ArticleStyle.swift @@ -8,7 +8,7 @@ import Foundation -public struct ArticleStyle: Equatable { +struct ArticleStyle: Equatable { static let defaultStyle = ArticleStyle() let path: String? @@ -75,8 +75,3 @@ private func stringAtPath(_ f: String) -> String? { } return nil } - -public func ==(lhs: ArticleStyle, rhs: ArticleStyle) -> Bool { - - return lhs.path == rhs.path && lhs.template == rhs.template && lhs.css == rhs.css && lhs.info == rhs.info -}