From c665cdb28aaf71293dfb6c6d8b0f12f71113d627 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 16 Feb 2020 15:15:45 -0500 Subject: [PATCH] Fix formatting. --- .../collections4/bloomfilter/hasher/HashFunction.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); }