Fix formatting.

This commit is contained in:
Gary Gregory 2020-02-16 15:15:45 -05:00
parent 4d6946c43a
commit c665cdb28a
1 changed files with 3 additions and 2 deletions

View File

@ -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);
}