Remove redundant public scoping on functions within public extensions. This becomes a warning with the Swift 5 compiler.

This commit is contained in:
Mathew Polzin
2019-02-07 18:49:58 -08:00
parent f7a81df451
commit 5257fd79fa
5 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ extension TransformedAttribute: _AttributeType {}
extension Attribute: _AttributeType {}
public extension Entity {
public static func check(_ entity: Entity) throws {
static func check(_ entity: Entity) throws {
var problems = [EntityCheckError]()
let attributesMirror = Mirror(reflecting: entity.attributes)