This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-codec.git
commit 919e2f3229d04ff8bbb18de3b0cfb70948092e34 Author: aherbert <aherb...@apache.org> AuthorDate: Tue Jun 30 15:10:15 2020 +0100 Add javadoc <p> tags --- src/main/java/org/apache/commons/codec/binary/Base16.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/binary/Base16.java b/src/main/java/org/apache/commons/codec/binary/Base16.java index 886b5cd..9ab5fc2 100644 --- a/src/main/java/org/apache/commons/codec/binary/Base16.java +++ b/src/main/java/org/apache/commons/codec/binary/Base16.java @@ -25,15 +25,17 @@ import org.apache.commons.codec.CodecPolicy; * <p> * This class is thread-safe. * </p> - * + * <p> * This implementation strictly follows RFC 4648, and as such unlike * the {@link Base32} and {@link Base64} implementations, * it does not ignore invalid alphabet characters or whitespace, * neither does it offer chunking or padding characters. - * + * </p> + * <p> * The only additional feature above those specified in RFC 4648 * is support for working with a lower-case alphabet in addition * to the default upper-case alphabet. + * </p> * * @see <a href="https://tools.ietf.org/html/rfc4648#section-8">RFC 4648 - 8. Base 16 Encoding</a> *