diff --git a/src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunction.java b/src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunction.java index 24d2af3a6..e8added24 100644 --- a/src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunction.java +++ b/src/main/java/org/apache/commons/collections4/bloomfilter/hasher/HashFunction.java @@ -25,11 +25,12 @@ public interface HashFunction extends HashFunctionIdentity { /** - * Apply the hash function to the buffer. + * Applies the hash function to the buffer. + * * @param buffer the buffer to apply the hash function to. * @param seed the seed for the hashing. * @return the long value of the hash. */ - long apply( byte[] buffer, int seed ); + long apply(byte[] buffer, int seed); }