LANG-1314: Fix javadoc creation on with Java 8

Fix StirngUtils </p> tags in javadoc

The paragraph

</p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>

appears in several places in the javadoc (presumably, copy-pasted from
the original one to the others). This is obviously a mistake, as a
paragraph should start with <p>, not with </p>.

This patch fixes all the occurrences of this paragraph to the proper
form:

<p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
This commit is contained in:
pascalschumacher 2017-03-06 19:22:49 +01:00
parent a0f9db2831
commit 0f5c769e0c
1 changed files with 8 additions and 8 deletions

View File

@ -313,7 +313,7 @@ public static boolean isNoneEmpty(final CharSequence... css) {
/**
* <p>Checks if a CharSequence is empty (""), null or whitespace only.</p>
*
* </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
* <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
*
* <pre>
* StringUtils.isBlank(null) = true
@ -344,7 +344,7 @@ public static boolean isBlank(final CharSequence cs) {
/**
* <p>Checks if a CharSequence is not empty (""), not null and not whitespace only.</p>
*
* </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
* <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
*
* <pre>
* StringUtils.isNotBlank(null) = false
@ -367,7 +367,7 @@ public static boolean isNotBlank(final CharSequence cs) {
/**
* <p>Checks if any of the CharSequences are empty ("") or null or whitespace only.</p>
*
* </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
* <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
*
* <pre>
* StringUtils.isAnyBlank(null) = true
@ -400,7 +400,7 @@ public static boolean isAnyBlank(final CharSequence... css) {
/**
* <p>Checks if any of the CharSequences are not empty (""), not null and not whitespace only.</p>
*
* </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
* <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
*
* <pre>
* StringUtils.isAnyNotBlank(null) = false
@ -433,7 +433,7 @@ public static boolean isAnyNotBlank(final CharSequence... css) {
/**
* <p>Checks if none of the CharSequences are empty (""), null or whitespace only.</p>
*
* </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
* <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
*
* <pre>
* StringUtils.isNoneBlank(null) = false
@ -1943,7 +1943,7 @@ public static boolean containsIgnoreCase(final CharSequence str, final CharSeque
/**
* <p>Check whether the given CharSequence contains any whitespace characters.</p>
*
* </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
* <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
*
* @param seq the CharSequence to check (may be {@code null})
* @return {@code true} if the CharSequence is not empty and
@ -7089,7 +7089,7 @@ public static boolean isNumericSpace(final CharSequence cs) {
/**
* <p>Checks if the CharSequence contains only whitespace.</p>
*
* </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
* <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
*
* <p>{@code null} will return {@code false}.
* An empty CharSequence (length()=0) will return {@code true}.</p>
@ -7238,7 +7238,7 @@ public static String defaultString(final String str, final String defaultStr) {
* <p>Returns either the passed in CharSequence, or if the CharSequence is
* whitespace, empty ("") or {@code null}, the value of {@code defaultStr}.</p>
*
* </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
* <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
*
* <pre>
* StringUtils.defaultIfBlank(null, "NULL") = "NULL"