Skip to content

Commit 596d4d9

Browse files
committed
Make constants public
1 parent 8f2b8a5 commit 596d4d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

netty-utils/src/main/java/org/asynchttpclient/netty/util/Utf8Decoder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public abstract class Utf8Decoder {
3636
12, 36, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12 //
3737
};
3838

39-
protected static final int UTF8_ACCEPT = 0;
40-
protected static final int UTF8_REJECT = 12;
39+
public static final int UTF8_ACCEPT = 0;
40+
public static final int UTF8_REJECT = 12;
4141

4242
protected StringBuilder sb = new StringBuilder();
4343
protected int state = UTF8_ACCEPT;

0 commit comments

Comments
 (0)