This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-text.git
The following commit(s) were added to refs/heads/master by this push: new 65d99b8 Checkstyle: (javadoc) JavadocStyle: First sentence should end with a period. 65d99b8 is described below commit 65d99b8162a6808358aaf24bda304a939cd95944 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 24 11:14:57 2021 -0400 Checkstyle: (javadoc) JavadocStyle: First sentence should end with a period. --- src/main/java/org/apache/commons/text/diff/EditCommand.java | 2 +- src/main/java/org/apache/commons/text/diff/InsertCommand.java | 2 +- src/main/java/org/apache/commons/text/diff/KeepCommand.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/text/diff/EditCommand.java b/src/main/java/org/apache/commons/text/diff/EditCommand.java index 1d6f19f..94d83e3 100644 --- a/src/main/java/org/apache/commons/text/diff/EditCommand.java +++ b/src/main/java/org/apache/commons/text/diff/EditCommand.java @@ -57,7 +57,7 @@ public abstract class EditCommand<T> { private final T object; /** - * Constructs a new instance of EditCommand + * Constructs a new instance of EditCommand. * * @param object reference to the object associated with this command, this * refers to an element of one of the sequences being compared diff --git a/src/main/java/org/apache/commons/text/diff/InsertCommand.java b/src/main/java/org/apache/commons/text/diff/InsertCommand.java index c3c29f5..76ad06c 100644 --- a/src/main/java/org/apache/commons/text/diff/InsertCommand.java +++ b/src/main/java/org/apache/commons/text/diff/InsertCommand.java @@ -35,7 +35,7 @@ package org.apache.commons.text.diff; public class InsertCommand<T> extends EditCommand<T> { /** - * Constructs a new instance of InsertCommand + * Constructs a new instance of InsertCommand. * * @param object the object of the second sequence that should be inserted */ diff --git a/src/main/java/org/apache/commons/text/diff/KeepCommand.java b/src/main/java/org/apache/commons/text/diff/KeepCommand.java index dc55d78..e9cba15 100644 --- a/src/main/java/org/apache/commons/text/diff/KeepCommand.java +++ b/src/main/java/org/apache/commons/text/diff/KeepCommand.java @@ -35,7 +35,7 @@ package org.apache.commons.text.diff; public class KeepCommand<T> extends EditCommand<T> { /** - * Constructs a new instance of KeepCommand + * Constructs a new instance of KeepCommand. * * @param object the object belonging to both sequences (the object is a * reference to the instance in the first sequence which is known