diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2019-02-15 16:49:28 +0900 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-02-18 00:14:34 +0100 |
commit | e5c4057467e92f521ff1cf84f61ddefe3c97d3e4 (patch) | |
tree | d4476515f699085d07794cfc1c7c019bbd2f4950 /org.eclipse.jgit | |
parent | a98906cc80c5801a639e21e3d39dd3bea63680bd (diff) | |
download | jgit-e5c4057467e92f521ff1cf84f61ddefe3c97d3e4.tar.gz jgit-e5c4057467e92f521ff1cf84f61ddefe3c97d3e4.zip |
CommitBuilder: Add missing periods on methods' Javadoc
Change-Id: Ibcf64b23de8534f7831d6e40ee4b0ad2bade74ce
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java index a30f042531..cac97ede43 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java @@ -116,7 +116,7 @@ public class CommitBuilder { } /** - * Set the tree id for this commit object + * Set the tree id for this commit object. * * @param id * the tree identity. @@ -154,7 +154,7 @@ public class CommitBuilder { } /** - * Set the committer and commit time for this object + * Set the committer and commit time for this object. * * @param newCommitter * the committer information. Should not be null. @@ -164,7 +164,7 @@ public class CommitBuilder { } /** - * Set the GPG signature of this commit + * Set the GPG signature of this commit. * <p> * Note, the signature set here will change the payload of the commit, i.e. * the output of {@link #build()} will include the signature. Thus, the @@ -290,7 +290,7 @@ public class CommitBuilder { } /** - * Set the encoding for the commit information + * Set the encoding for the commit information. * * @param encodingName * the encoding name. See @@ -301,7 +301,7 @@ public class CommitBuilder { } /** - * Set the encoding for the commit information + * Set the encoding for the commit information. * * @param enc * the encoding to use. |