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

commit cef31ffa9f4f6f6d2b2702b8b1256cb0893589da
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Dec 28 07:36:42 2024 -0500

    Add Checkstyle LeftCurly
---
 src/test/java/org/apache/commons/codec/binary/BaseNTestData.java | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/codec/binary/BaseNTestData.java 
b/src/test/java/org/apache/commons/codec/binary/BaseNTestData.java
index 742714de..d5eb28b4 100644
--- a/src/test/java/org/apache/commons/codec/binary/BaseNTestData.java
+++ b/src/test/java/org/apache/commons/codec/binary/BaseNTestData.java
@@ -78,6 +78,7 @@ public class BaseNTestData {
     private final static int SIZE_KEY = 0;
 
     private final static int LAST_READ_KEY = 1;
+
     /**
      * Tests the supplied byte[] array to see if it contains the specified 
byte c.
      *
@@ -87,7 +88,9 @@ public class BaseNTestData {
      */
     static boolean bytesContain(final byte[] bytes, final byte c) {
         for (final byte b : bytes) {
-            if (b == c) { return true; }
+            if (b == c) {
+                return true;
+            }
         }
         return false;
     }

Reply via email to