You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2022/10/11 19:42:57 UTC

[activemq-artemis] branch main updated: NO-JIRA small tweak on javadoc

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new e951ce67ca NO-JIRA small tweak on javadoc
e951ce67ca is described below

commit e951ce67cacbe70dadb4db4bbd28e313b2d446ea
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Tue Oct 11 15:42:36 2022 -0400

    NO-JIRA small tweak on javadoc
---
 .../activemq/artemis/core/protocol/openwire/OpenWireFrameParser.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireFrameParser.java b/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireFrameParser.java
index 81c429918d..7314bc573f 100644
--- a/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireFrameParser.java
+++ b/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireFrameParser.java
@@ -66,7 +66,7 @@ public class OpenWireFrameParser extends ByteToMessageDecoder {
                logger.trace("Creating a heapBuffer sized as {} as it is beyond {} chunk limit", bufferSize, openwireMaxPacketChunkSize);
             }
             // we will use a heap buffer for large frames.
-            // to avoid competing for resources with the broker on native messages.
+            // to avoid competing for resources with the broker on native buffers.
             // to save the broker in case users send huge messages in openwire.
             outBuffer = UnpooledByteBufAllocator.DEFAULT.heapBuffer(bufferSize);
          }