aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/SerializationUtils.java
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2019-12-10 16:27:02 -0500
committerGary Gregory <garydgregory@gmail.com>2019-12-10 16:27:02 -0500
commit7bbbdd2477305992e4d809db5288d6f62718124b (patch)
tree3b736a0c877cec0686de03b1578eb20190add4c0 /src/main/java/org/apache/commons/lang3/SerializationUtils.java
parent404d67841ecba0d2a5e8055fe5650907d582ac03 (diff)
downloadapache-commons-lang-7bbbdd2477305992e4d809db5288d6f62718124b.tar.gz
Javadoc: Replace <code></code> HTML tags with Javadoc {@code} notation.
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/SerializationUtils.java')
-rw-r--r--src/main/java/org/apache/commons/lang3/SerializationUtils.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/org/apache/commons/lang3/SerializationUtils.java b/src/main/java/org/apache/commons/lang3/SerializationUtils.java
index 8446f5885..28f8d76ea 100644
--- a/src/main/java/org/apache/commons/lang3/SerializationUtils.java
+++ b/src/main/java/org/apache/commons/lang3/SerializationUtils.java
@@ -225,12 +225,12 @@ public class SerializationUtils {
/**
* <p>Custom specialization of the standard JDK {@link java.io.ObjectInputStream}
- * that uses a custom <code>ClassLoader</code> to resolve a class.
- * If the specified <code>ClassLoader</code> is not able to resolve the class,
+ * that uses a custom {@code ClassLoader} to resolve a class.
+ * If the specified {@code ClassLoader} is not able to resolve the class,
* the context classloader of the current thread will be used.
* This way, the standard deserialization work also in web-application
* containers and application servers, no matter in which of the
- * <code>ClassLoader</code> the particular class that encapsulates
+ * {@code ClassLoader} the particular class that encapsulates
* serialization/deserialization lives. </p>
*
* <p>For more in-depth information about the problem for which this
@@ -256,7 +256,7 @@ public class SerializationUtils {
/**
* Constructor.
- * @param in The <code>InputStream</code>.
+ * @param in The {@code InputStream}.
* @param classLoader classloader to use
* @throws IOException if an I/O error occurs while reading stream header.
* @see java.io.ObjectInputStream
@@ -267,10 +267,10 @@ public class SerializationUtils {
}
/**
- * Overridden version that uses the parameterized <code>ClassLoader</code> or the <code>ClassLoader</code>
- * of the current <code>Thread</code> to resolve the class.
- * @param desc An instance of class <code>ObjectStreamClass</code>.
- * @return A <code>Class</code> object corresponding to <code>desc</code>.
+ * Overridden version that uses the parameterized {@code ClassLoader} or the {@code ClassLoader}
+ * of the current {@code Thread} to resolve the class.
+ * @param desc An instance of class {@code ObjectStreamClass}.
+ * @return A {@code Class} object corresponding to {@code desc}.
* @throws IOException Any of the usual Input/Output exceptions.
* @throws ClassNotFoundException If class of a serialized object cannot be found.
*/