This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
The following commit(s) were added to refs/heads/master by this push:
new 5ce5b0bc Javadoc
5ce5b0bc is described below
commit 5ce5b0bcb8901f9eb918b362a1ab84a6ade185aa
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jun 30 14:02:09 2026 +0000
Javadoc
---
.../commons/jcs4/engine/behavior/IElementSerializer.java | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git
a/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/behavior/IElementSerializer.java
b/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/behavior/IElementSerializer.java
index ded48dd3..9919081f 100644
---
a/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/behavior/IElementSerializer.java
+++
b/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/engine/behavior/IElementSerializer.java
@@ -57,7 +57,7 @@ public interface IElementSerializer
* The method expects to find a four-byte length prefix in the
* stream data.
*
- * @param <T> the type of the object
+ * @param <T> The type of the object
* @param ic the input channel
* @param readTimeoutMs the read timeout in milliseconds
* @param loader class loader to use
@@ -125,7 +125,7 @@ public interface IElementSerializer
* The method expects to find a four-byte length prefix in the
* stream data.
*
- * @param <T> the type of the object
+ * @param <T> The type of the object
* @param is the input stream
* @param loader class loader to use
* @throws IOException if serialization or reading fails
@@ -143,7 +143,7 @@ public interface IElementSerializer
* The method expects to find a four-byte length prefix in the
* stream data.
*
- * @param <T> the type of the object
+ * @param <T> The type of the object
* @param ic the input channel
* @param loader class loader to use
* @throws IOException if serialization or reading fails
@@ -186,7 +186,7 @@ public interface IElementSerializer
/**
* Turns an object into a byte array.
*
- * @param <T> the type of the object
+ * @param <T> The type of the object
* @param obj the object to serialize
* @return byte[] a byte array containing the serialized object
* @throws IOException if serialization fails
@@ -199,7 +199,7 @@ public interface IElementSerializer
* asynchronous channel.
* The stream data will be prepended with a four-byte length prefix.
*
- * @param <T> the type of the object
+ * @param <T> The type of the object
* @param obj the object to serialize
* @param oc the output channel
* @param writeTimeoutMs the write timeout im milliseconds
@@ -237,7 +237,7 @@ public interface IElementSerializer
* Convenience method to write serialized object into a stream.
* The stream data will be prepended with a four-byte length prefix.
*
- * @param <T> the type of the object
+ * @param <T> The type of the object
* @param obj the object to serialize
* @param os the output stream
* @return the number of bytes written
@@ -261,7 +261,7 @@ public interface IElementSerializer
* Convenience method to write serialized object into a channel.
* The stream data will be prepended with a four-byte length prefix.
*
- * @param <T> the type of the object
+ * @param <T> The type of the object
* @param obj the object to serialize
* @param oc the output channel
* @return the number of bytes written