This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit c665cdb28aaf71293dfb6c6d8b0f12f71113d627 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Feb 16 15:15:45 2020 -0500 Fix formatting. --- .../apache/commons/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 24d2af3..e8added 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); }