Skip to content

Commit

Permalink
Removed reflection check
Browse files Browse the repository at this point in the history
blowing up tests for no real good reason, not required anyway

Signed-off-by: quobix <dave@quobix.com>
  • Loading branch information
daveshanley committed Nov 17, 2023
1 parent ac80716 commit 43838b8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions datamodel/low/extraction_functions.go
Original file line number Diff line number Diff line change
Expand Up @@ -823,9 +823,7 @@ func AreEqual(l, r Hashable) bool {
if l == nil || r == nil {
return false
}
if reflect.ValueOf(l).IsNil() || reflect.ValueOf(r).IsNil() {
return false
}

return l.Hash() == r.Hash()
}

Expand Down

0 comments on commit 43838b8

Please sign in to comment.