From 66d323252598b544774a4f7a6f45164b54ecda45 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 19 May 2019 09:06:00 -0400 Subject: [PATCH] Javadoc: Use paragraph tags. --- .../apache/commons/codec/CharEncoding.java | 31 ++++++++++++------- .../org/apache/commons/codec/Charsets.java | 24 +++++++------- .../apache/commons/codec/digest/Md5Crypt.java | 8 +++-- 3 files changed, 37 insertions(+), 26 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/CharEncoding.java b/src/main/java/org/apache/commons/codec/CharEncoding.java index 27c7aa4821..6457933c94 100644 --- a/src/main/java/org/apache/commons/codec/CharEncoding.java +++ b/src/main/java/org/apache/commons/codec/CharEncoding.java @@ -29,19 +29,19 @@ *

* * * * This perhaps would best belong in the [lang] project. Even if a similar interface is defined in [lang], it is not @@ -55,10 +55,12 @@ * @since 1.4 */ public class CharEncoding { + /** * CharEncodingISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1. *

* Every implementation of the Java platform is required to support this character encoding. + *

* * @see Standard charsets */ @@ -68,6 +70,7 @@ public class CharEncoding { * Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block of the Unicode character set. *

* Every implementation of the Java platform is required to support this character encoding. + *

* * @see Standard charsets */ @@ -78,6 +81,7 @@ public class CharEncoding { * (either order accepted on input, big-endian used on output) *

* Every implementation of the Java platform is required to support this character encoding. + *

* * @see Standard charsets */ @@ -87,6 +91,7 @@ public class CharEncoding { * Sixteen-bit Unicode Transformation Format, big-endian byte order. *

* Every implementation of the Java platform is required to support this character encoding. + *

* * @see Standard charsets */ @@ -96,6 +101,7 @@ public class CharEncoding { * Sixteen-bit Unicode Transformation Format, little-endian byte order. *

* Every implementation of the Java platform is required to support this character encoding. + *

* * @see Standard charsets */ @@ -105,6 +111,7 @@ public class CharEncoding { * Eight-bit Unicode Transformation Format. *

* Every implementation of the Java platform is required to support this character encoding. + *

* * @see Standard charsets */ diff --git a/src/main/java/org/apache/commons/codec/Charsets.java b/src/main/java/org/apache/commons/codec/Charsets.java index f553b60ed9..44bb0bb1f4 100644 --- a/src/main/java/org/apache/commons/codec/Charsets.java +++ b/src/main/java/org/apache/commons/codec/Charsets.java @@ -30,19 +30,19 @@ *

* * * * This perhaps would best belong in the Commons Lang project. Even if a similar class is defined in Commons Lang, it is diff --git a/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java b/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java index 10635bd436..b6a14ddb57 100644 --- a/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java +++ b/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java @@ -31,19 +31,23 @@ *

* Based on the public domain ("beer-ware") C implementation from Poul-Henning Kamp which was found at: - * crypt-md5.c @ freebsd.org
+ * crypt-md5.c @ freebsd.org + *

*

* Source: - * + *

*
  * $FreeBSD: src/lib/libcrypt/crypt-md5.c,v 1.1 1999/01/21 13:50:09 brandon Exp $
  * 
*

* Conversion to Kotlin and from there to Java in 2012. + *

*

* The C style comments are from the original C code, the ones with "//" from the port. + *

*

* This class is immutable and thread-safe. + *

* * @since 1.7 */