This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit b9a48bbabc3c2ba31ec37f4f4439f5dc33bb07c7 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Fri Jun 23 13:55:28 2023 +0200 (chores) camel-mllp: move array designators to the type --- .../java/org/apache/camel/component/mllp/internal/MllpSocketBuffer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/internal/MllpSocketBuffer.java b/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/internal/MllpSocketBuffer.java index 055fe1c0aaf..73ed4ea0b62 100644 --- a/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/internal/MllpSocketBuffer.java +++ b/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/internal/MllpSocketBuffer.java @@ -40,7 +40,7 @@ public class MllpSocketBuffer { private static final Logger LOG = LoggerFactory.getLogger(MllpSocketBuffer.class); final MllpEndpoint endpoint; - byte buffer[]; + byte[] buffer; int availableByteCount; int startOfBlockIndex = -1;