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-codec.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c66732  Javadoc tweaks based on ML review.
0c66732 is described below

commit 0c667320394a25367f2009696abdcedbe2b19d49
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Mon May 6 10:13:19 2019 -0400

    Javadoc tweaks based on ML review.
---
 .../org/apache/commons/codec/binary/BinaryCodecTest.java   | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/test/java/org/apache/commons/codec/binary/BinaryCodecTest.java 
b/src/test/java/org/apache/commons/codec/binary/BinaryCodecTest.java
index ceee367..e900002 100644
--- a/src/test/java/org/apache/commons/codec/binary/BinaryCodecTest.java
+++ b/src/test/java/org/apache/commons/codec/binary/BinaryCodecTest.java
@@ -41,25 +41,25 @@ public class BinaryCodecTest {
     /** Mask with bit zero-based index 0 raised. */
     private static final int BIT_0 = 0x01;
 
-    /** Mask with bit zero-based index 0 raised. */
+    /** Mask with bit zero-based index 1 raised. */
     private static final int BIT_1 = 0x02;
 
-    /** Mask with bit zero-based index 0 raised. */
+    /** Mask with bit zero-based index 2 raised. */
     private static final int BIT_2 = 0x04;
 
-    /** Mask with bit zero-based index 0 raised. */
+    /** Mask with bit zero-based index 3 raised. */
     private static final int BIT_3 = 0x08;
 
-    /** Mask with bit zero-based index 0 raised. */
+    /** Mask with bit zero-based index 4 raised. */
     private static final int BIT_4 = 0x10;
 
-    /** Mask with bit zero-based index 0 raised. */
+    /** Mask with bit zero-based index 5 raised. */
     private static final int BIT_5 = 0x20;
 
-    /** Mask with bit zero-based index 0 raised. */
+    /** Mask with bit zero-based index 6 raised. */
     private static final int BIT_6 = 0x40;
 
-    /** Mask with bit zero-based index 0 raised. */
+    /** Mask with bit zero-based index 7 raised. */
     private static final int BIT_7 = 0x80;
 
     /** An instance of the binary codec. */

Reply via email to