You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/06/23 15:45:18 UTC

[camel] 09/14: (chores) camel-mllp: move array designators to the type

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 <an...@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;