diff options
author | Bjørn Erik Pedersen <[email protected]> | 2024-07-30 15:47:34 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-07-31 16:44:06 +0200 |
commit | e67886c038dc79755c14ec77bbeff6605953f9ef (patch) | |
tree | 6b36585a55796b5a29d41764175e4d6d82a0d206 /metrics | |
parent | d5eda13cb2e57998210b66e080dc96e95b38e5f0 (diff) | |
download | hugo-e67886c038dc79755c14ec77bbeff6605953f9ef.tar.gz hugo-e67886c038dc79755c14ec77bbeff6605953f9ef.zip |
Consolidate all hashing to the common/hashing package
And remove now unsued hashing funcs.
Diffstat (limited to 'metrics')
-rw-r--r-- | metrics/metrics.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/metrics/metrics.go b/metrics/metrics.go index f7b68db25..08d9322ab 100644 --- a/metrics/metrics.go +++ b/metrics/metrics.go @@ -25,9 +25,9 @@ import ( "sync" "time" + "github.com/gohugoio/hugo/common/hashing" "github.com/gohugoio/hugo/common/types" "github.com/gohugoio/hugo/compare" - "github.com/gohugoio/hugo/identity" ) // The Provider interface defines an interface for measuring metrics. @@ -241,7 +241,7 @@ func howSimilar(a, b any) int { return 90 } - h1, h2 := identity.HashString(a), identity.HashString(b) + h1, h2 := hashing.HashString(a), hashing.HashString(b) if h1 == h2 { return 100 } |