This is an automated email from the ASF dual-hosted git repository.
elecharny pushed a commit to branch 2.2.X
in repository https://gitbox.apache.org/repos/asf/mina.git
The following commit(s) were added to refs/heads/2.2.X by this push:
new 6ea71ebd9 Added some new line to clarify the code
6ea71ebd9 is described below
commit 6ea71ebd9c013a15600988f19cad4a83ad1bf926
Author: Emmanuel Lécharny <[email protected]>
AuthorDate: Thu Oct 16 13:58:54 2025 +0200
Added some new line to clarify the code
---
.../java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/mina-core/src/main/java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java
b/mina-core/src/main/java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java
index eeb3e13d1..c68542352 100644
---
a/mina-core/src/main/java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java
+++
b/mina-core/src/main/java/org/apache/mina/filter/codec/CumulativeProtocolDecoder.java
@@ -102,7 +102,8 @@ public abstract class CumulativeProtocolDecoder extends
ProtocolDecoderAdapter {
/** The buffer used to store the data in the session */
private static final AttributeKey BUFFER = new
AttributeKey(CumulativeProtocolDecoder.class, "buffer");
- /** A flag set to true if we handle fragmentation accordingly to the
TransportMetadata setting.
+ /**
+ * A flag set to true if we handle fragmentation accordingly to the
TransportMetadata setting.
* It can be set to false if needed (UDP with fragments, for instance).
the default value is 'true'
*/
private boolean transportMetadataFragmentation = true;