Skip to content

Commit

Permalink
make Syslog decoder classes public
Browse files Browse the repository at this point in the history
  • Loading branch information
unixoid committed Jan 23, 2025
1 parent d8b56dd commit 00df37c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* @author Christian Ohr
* @since 4.0
*/
class Rfc5424Decoder extends MessageToMessageDecoder<ByteBuf> {
public class Rfc5424Decoder extends MessageToMessageDecoder<ByteBuf> {

private static final Logger log = LoggerFactory.getLogger(Rfc5424Decoder.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* @author Christian Ohr
* @since 4.0
*/
class Rfc5425Decoder extends ByteToMessageDecoder {
public class Rfc5425Decoder extends ByteToMessageDecoder {

@SuppressWarnings("OptionalUsedAsFieldOrParameterType")
private OptionalInt frameLength = empty();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import java.util.List;

class Rfc5426Decoder extends ByteToMessageDecoder {
public class Rfc5426Decoder extends ByteToMessageDecoder {

@Override
protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) {
Expand Down

0 comments on commit 00df37c

Please sign in to comment.