Skip to content

Commit

Permalink
Reset signature
Browse files Browse the repository at this point in the history
  • Loading branch information
LinZhihao-723 committed Oct 15, 2024
1 parent 54b9d70 commit 92c78af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.nio.charset.StandardCharsets;

public class FlattenedByteArrayFactory {
private static ThreadLocal<ByteArrayOutputStream> reusableByteArrayOutputStream = ThreadLocal.withInitial(ByteArrayOutputStream::new);
private static final ThreadLocal<ByteArrayOutputStream> reusableByteArrayOutputStream = ThreadLocal.withInitial(ByteArrayOutputStream::new);

/**
* Constructs a FlattenedByteArray by concatenating the given byte arrays together.
Expand Down

0 comments on commit 92c78af

Please sign in to comment.