Skip to content

Commit cef31ff

Browse files
committed
Add Checkstyle LeftCurly
1 parent f4e02ad commit cef31ff

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/test/java/org/apache/commons/codec/binary/BaseNTestData.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public class BaseNTestData {
7878
private final static int SIZE_KEY = 0;
7979

8080
private final static int LAST_READ_KEY = 1;
81+
8182
/**
8283
* Tests the supplied byte[] array to see if it contains the specified byte c.
8384
*
@@ -87,7 +88,9 @@ public class BaseNTestData {
8788
*/
8889
static boolean bytesContain(final byte[] bytes, final byte c) {
8990
for (final byte b : bytes) {
90-
if (b == c) { return true; }
91+
if (b == c) {
92+
return true;
93+
}
9194
}
9295
return false;
9396
}

0 commit comments

Comments
 (0)