Skip to content

Commit f13cfa4

Browse files
committed
Fix checkstyle issue
1 parent 60b899b commit f13cfa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/at/favre/lib/bytes/Bytes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
@SuppressWarnings("WeakerAccess")
6161
public class Bytes implements Comparable<Bytes>, Serializable, Iterable<Byte> {
6262

63-
private final static Bytes EMPTY = Bytes.wrap(new byte[0]);
63+
private static final Bytes EMPTY = Bytes.wrap(new byte[0]);
6464

6565
/* FACTORY ***************************************************************************************************/
6666

0 commit comments

Comments
 (0)