Skip to content

Commit f0f649c

Browse files
committed
Javadoc
1 parent becaef0 commit f0f649c

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/main/java/org/apache/commons/codec/binary/Base64.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ public static byte[] decodeBase64(final String base64String) {
219219
return new Base64().decode(base64String);
220220
}
221221

222-
// Implementation of integer encoding used for crypto
223222
/**
224223
* Decodes a byte64-encoded integer according to crypto standards such as W3C's XML-Signature.
225224
*

src/main/java/org/apache/commons/codec/digest/MurmurHash3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.apache.commons.codec.binary.StringUtils;
2121

2222
/**
23-
* Implementation of the MurmurHash3 32-bit and 128-bit hash functions.
23+
* Implements the MurmurHash3 32-bit and 128-bit hash functions.
2424
*
2525
* <p>
2626
* MurmurHash is a non-cryptographic hash function suitable for general hash-based lookup. The name comes from two basic

src/main/java/org/apache/commons/codec/digest/XXHash32.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import java.util.zip.Checksum;
2323

2424
/**
25-
* Implementation of the xxHash32 hash algorithm.
25+
* Implements the xxHash32 hash algorithm.
2626
*
2727
* <p>
2828
* Copied from Commons Compress 1.14 <a href=

0 commit comments

Comments
 (0)