From 39f09559200e0fad71c6f42756f3900a1d270cd4 Mon Sep 17 00:00:00 2001 From: aherbert Date: Mon, 17 Feb 2020 15:22:13 +0000 Subject: [PATCH] Removed spurious javadoc tag. --- .../collections4/bloomfilter/hasher/HashFunctionIdentity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunctionIdentity.java b/src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunctionIdentity.java index cf518b4d6..2b9ac5217 100644 --- a/src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunctionIdentity.java +++ b/src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunctionIdentity.java @@ -46,7 +46,7 @@ public interface HashFunctionIdentity { * Call the underlying hash algorithm for a (buffer, seed) pair passed to * {@link HashFunction#apply(byte[], int)} when the state is uninitialised or * the seed is zero. This initialises the state. Subsequent calls with a non-zero - * seed use the state to generate a new value. + * seed use the state to generate a new value. */ CYCLIC, /**