Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/java/org/apache/cassandra/utils/MD5Digest.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
*
* A MD5 is really just a byte[] but arrays are a no go as map keys. We could
* wrap it in a ByteBuffer but:
* 1. MD5Digest is a more explicit name than ByteBuffer to represent a md5.
* 2. Using our own class allows to use our FastByteComparison for equals.
* <ol>
* <li>MD5Digest is a more explicit name than ByteBuffer to represent a md5.</li>
* <li> Using our own class allows to use our FastByteComparison for equals.</li>
* </ol>
*/
public class MD5Digest
{
Expand Down