aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/CharEncoding.java
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2022-08-23 10:17:50 -0400
committerGary Gregory <garydgregory@gmail.com>2022-08-23 10:46:01 -0400
commit1c2397eb4774032eedd4223b7d3b9ec366d3b685 (patch)
tree19517082b90e6f3ec8b21c60d98c77f15a68aa36 /src/main/java/org/apache/commons/lang3/CharEncoding.java
parent21da81bb4d9d1080716fe4f75eddc96a8a4e27a7 (diff)
downloadapache-commons-lang-1c2397eb4774032eedd4223b7d3b9ec366d3b685.tar.gz
First sentence of a Javadoc comment does not need p tags
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/CharEncoding.java')
-rw-r--r--src/main/java/org/apache/commons/lang3/CharEncoding.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/main/java/org/apache/commons/lang3/CharEncoding.java b/src/main/java/org/apache/commons/lang3/CharEncoding.java
index ff7dfc1a5..621b44d8d 100644
--- a/src/main/java/org/apache/commons/lang3/CharEncoding.java
+++ b/src/main/java/org/apache/commons/lang3/CharEncoding.java
@@ -21,7 +21,7 @@ import java.nio.charset.Charset;
import java.nio.charset.IllegalCharsetNameException;
/**
- * <p>Character encoding names required of every implementation of the Java platform.</p>
+ * Character encoding names required of every implementation of the Java platform.
*
* <p>According to <a href="https://docs.oracle.com/javase/8/docs/api/java/nio/charset/Charset.html">JRE character
* encoding names</a>:</p>
@@ -40,51 +40,51 @@ import java.nio.charset.IllegalCharsetNameException;
public class CharEncoding {
/**
- * <p>ISO Latin Alphabet #1, also known as ISO-LATIN-1.</p>
+ * ISO Latin Alphabet #1, also known as ISO-LATIN-1.
*
* <p>Every implementation of the Java platform is required to support this character encoding.</p>
*/
public static final String ISO_8859_1 = "ISO-8859-1";
/**
- * <p>Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block
- * of the Unicode character set.</p>
+ * Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block
+ * of the Unicode character set.
*
* <p>Every implementation of the Java platform is required to support this character encoding.</p>
*/
public static final String US_ASCII = "US-ASCII";
/**
- * <p>Sixteen-bit Unicode Transformation Format, byte order specified by a mandatory initial
- * byte-order mark (either order accepted on input, big-endian used on output).</p>
+ * Sixteen-bit Unicode Transformation Format, byte order specified by a mandatory initial
+ * byte-order mark (either order accepted on input, big-endian used on output).
*
* <p>Every implementation of the Java platform is required to support this character encoding.</p>
*/
public static final String UTF_16 = "UTF-16";
/**
- * <p>Sixteen-bit Unicode Transformation Format, big-endian byte order.</p>
+ * Sixteen-bit Unicode Transformation Format, big-endian byte order.
*
* <p>Every implementation of the Java platform is required to support this character encoding.</p>
*/
public static final String UTF_16BE = "UTF-16BE";
/**
- * <p>Sixteen-bit Unicode Transformation Format, little-endian byte order.</p>
+ * Sixteen-bit Unicode Transformation Format, little-endian byte order.
*
* <p>Every implementation of the Java platform is required to support this character encoding.</p>
*/
public static final String UTF_16LE = "UTF-16LE";
/**
- * <p>Eight-bit Unicode Transformation Format.</p>
+ * Eight-bit Unicode Transformation Format.
*
* <p>Every implementation of the Java platform is required to support this character encoding.</p>
*/
public static final String UTF_8 = "UTF-8";
/**
- * <p>Returns whether the named charset is supported.</p>
+ * Returns whether the named charset is supported.
*
* <p>This is similar to <a
* href="https://docs.oracle.com/javase/8/docs/api/java/nio/charset/Charset.html#isSupported%28java.lang.String%29">