diff --git a/src/leveled_tinybloom.erl b/src/leveled_tinybloom.erl index 9d85b9a..5e86473 100644 --- a/src/leveled_tinybloom.erl +++ b/src/leveled_tinybloom.erl @@ -45,7 +45,7 @@ enter({hash, Hash}, Bloom) -> fun(Bit, Arr) -> add_to_array(Bit, Arr, 1024) end, SplitArray1 = lists:foldl(FoldFun, SplitArray0, - lists:usort([Bit1, Bit2, Bit3])), + [Bit1, Bit2, Bit3]), dict:store(Slot, <
>, Bloom); enter(Key, Bloom) -> Hash = leveled_codec:magic_hash(Key),