Javadoc: Sentences end in a period.

This commit is contained in:
Gary Gregory 2021-01-22 13:41:06 -05:00
parent 0b135af5a0
commit 6b03fe54b8
3 changed files with 4 additions and 4 deletions

View File

@ -803,7 +803,7 @@ public class ObjectUtils {
*
* @param appendable the appendable to append to
* @param object the object to create a toString for
* @throws IOException if an I/O error occurs
* @throws IOException if an I/O error occurs.
* @since 3.2
*/
public static void identityToString(final Appendable appendable, final Object object) throws IOException {

View File

@ -445,7 +445,7 @@ public class StrBuilder implements CharSequence, Appendable, Serializable, Build
*
* @param readable object to read from
* @return the number of characters read
* @throws IOException if an I/O error occurs
* @throws IOException if an I/O error occurs.
*
* @since 3.4
* @see #appendTo(Appendable)

View File

@ -778,7 +778,7 @@ public class FastDatePrinter implements DatePrinter, Serializable {
*
* @param buf the output buffer
* @param calendar calendar to be appended
* @throws IOException if an I/O error occurs
* @throws IOException if an I/O error occurs.
*/
void appendTo(Appendable buf, Calendar calendar) throws IOException;
}
@ -792,7 +792,7 @@ public class FastDatePrinter implements DatePrinter, Serializable {
*
* @param buffer the output buffer
* @param value the value to be appended
* @throws IOException if an I/O error occurs
* @throws IOException if an I/O error occurs.
*/
void appendTo(Appendable buffer, int value) throws IOException;
}