We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
return
1 parent 4eca724 commit 2be9730Copy full SHA for 2be9730
CKSwift/State.swift
@@ -45,6 +45,6 @@ public struct State<Value> : TreeNodeLinkable {
45
46
extension State : Equatable where Value : Equatable {
47
static public func ==(lhs: State, rhs: State) -> Bool {
48
- return lhs.wrappedValue == rhs.wrappedValue
+ lhs.wrappedValue == rhs.wrappedValue
49
}
50
CKSwift/ViewModel.swift
@@ -46,6 +46,6 @@ public struct ViewModel<Value: AnyObject> : TreeNodeLinkable {
extension ViewModel : Equatable {
static public func ==(lhs: ViewModel, rhs: ViewModel) -> Bool {
- return lhs.wrappedValue === rhs.wrappedValue
+ lhs.wrappedValue === rhs.wrappedValue
51
0 commit comments