Skip to content

Commit 026079d

Browse files
committed
Update project
1 parent b7b4621 commit 026079d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.1
1+
5.3.2

Sources/FirebladeUUID/UUID.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public struct UUID {
117117

118118
extension UUID: Equatable {
119119
public static func == (lhs: UUID, rhs: UUID) -> Bool {
120-
return lhs.bytes == rhs.bytes
120+
lhs.bytes == rhs.bytes
121121
}
122122
}
123123

@@ -128,9 +128,9 @@ extension UUID: Hashable {
128128
}
129129

130130
extension UUID: CustomStringConvertible {
131-
public var description: String { return uuidString }
131+
public var description: String { uuidString }
132132
}
133133

134134
extension UUID: CustomDebugStringConvertible {
135-
public var debugDescription: String { return uuidString }
135+
public var debugDescription: String { uuidString }
136136
}

Tests/FirebladeUUIDTests/XCTestManifests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ extension FirebladeUUIDTests {
88
static let __allTests__FirebladeUUIDTests = [
99
("testInit", testInit),
1010
("testString", testString),
11-
("testUniqueness", testUniqueness)
11+
("testUniqueness", testUniqueness),
1212
]
1313
}
1414

1515
public func __allTests() -> [XCTestCaseEntry] {
1616
return [
17-
testCase(FirebladeUUIDTests.__allTests__FirebladeUUIDTests)
17+
testCase(FirebladeUUIDTests.__allTests__FirebladeUUIDTests),
1818
]
1919
}
2020
#endif

0 commit comments

Comments
 (0)