aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/SerializationUtils.java
diff options
context:
space:
mode:
authorThomas Neidhart <tn@apache.org>2013-02-20 16:57:52 +0000
committerThomas Neidhart <tn@apache.org>2013-02-20 16:57:52 +0000
commit8bfee9ba527983d5aa78c6437f7b72ca51ed4f8d (patch)
tree8d77f50c955e40de58dfd92cbb07461ab3564af2 /src/main/java/org/apache/commons/lang3/SerializationUtils.java
parent9e4c7ad56254852390444f050bed37bf87f17e85 (diff)
downloadapache-commons-lang-8bfee9ba527983d5aa78c6437f7b72ca51ed4f8d.tar.gz
Add generic type parameter javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1448293 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/SerializationUtils.java')
-rw-r--r--src/main/java/org/apache/commons/lang3/SerializationUtils.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/apache/commons/lang3/SerializationUtils.java b/src/main/java/org/apache/commons/lang3/SerializationUtils.java
index 588d40867..7e95e28bb 100644
--- a/src/main/java/org/apache/commons/lang3/SerializationUtils.java
+++ b/src/main/java/org/apache/commons/lang3/SerializationUtils.java
@@ -187,7 +187,8 @@ public class SerializationUtils {
* Without Generics in this declaration, the call site must type cast and can cause the same ClassCastException.
* Note that in both cases, the ClassCastException is in the call site, not in this method.
* </p>
- *
+ *
+ * @param <T> the object type to be deserialized
* @param inputStream
* the serialized object input stream, must not be null
* @return the deserialized object
@@ -234,6 +235,7 @@ public class SerializationUtils {
* Note that in both cases, the ClassCastException is in the call site, not in this method.
* </p>
*
+ * @param <T> the object type to be deserialized
* @param objectData
* the serialized object, must not be null
* @return the deserialized object