format code

This commit is contained in:
Yonas Kolb
2017-09-26 14:22:15 +02:00
parent fae35d6d67
commit 8a7bfa12fc
5 changed files with 10 additions and 12 deletions
+1 -2
View File
@@ -31,7 +31,6 @@ public struct ProjectSpec {
public var bundleIdPrefix: String?
public init() {
}
}
@@ -98,7 +97,7 @@ extension ProjectSpec.Options: Equatable {
public static func ==(lhs: ProjectSpec.Options, rhs: ProjectSpec.Options) -> Bool {
return lhs.carthageBuildPath == rhs.carthageBuildPath &&
lhs.bundleIdPrefix == rhs.bundleIdPrefix
lhs.bundleIdPrefix == rhs.bundleIdPrefix
}
}