Skip to content

Commit 8d6513e

Browse files
committed
salt probably not needed
1 parent 201ffaa commit 8d6513e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/biosequence/biosequence.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,7 @@ Base.empty(x::BioSequence) = empty(typeof(x))
109109
BitsPerSymbol(x::BioSequence) = BitsPerSymbol(Alphabet(typeof(x)))
110110
bits_per_symbol(::Type{T}) where {T <: BioSequence} = bits_per_symbol(Alphabet(T))
111111
bits_per_symbol(x::BioSequence) = bits_per_symbol(typeof(x))
112-
113-
const biosequencehash_seed = 0xd3f2809990a31c79
114-
Base.hash(s::BioSequence, x::UInt) = Base.hash_shaped(s, x biosequencehash_seed)
112+
Base.hash(s::BioSequence, x::UInt) = Base.hash_shaped(s, x)
115113

116114
function Base.similar(seq::BioSequence, len::Integer=length(seq))
117115
return typeof(seq)(undef, len)

0 commit comments

Comments
 (0)