diff options
author | Robin Rosenberg <robin.rosenberg@dewire.com> | 2014-06-10 09:59:17 +0200 |
---|---|---|
committer | Robin Rosenberg <robin.rosenberg@dewire.com> | 2014-06-10 09:59:17 +0200 |
commit | 79004dd42a89cb808e11da816749f081a6993aaf (patch) | |
tree | e785accbc9003e02346f51944d002b55577addb6 | |
parent | acd7ed52692bb7155333efea6dead712b7156ab9 (diff) | |
download | jgit-79004dd42a89cb808e11da816749f081a6993aaf.tar.gz jgit-79004dd42a89cb808e11da816749f081a6993aaf.zip |
Add missing @since to RepoCommand.setInputStream
Change-Id: I2fa1a5c28a1521a837aeaeb994e5cce8d7c4e645
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java index b127697fb5..b967c968d4 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java @@ -427,11 +427,12 @@ public class RepoCommand extends GitCommand<RevCommit> { /** * Set the input stream to the manifest XML. * - * Setting inputStream will ignore the path set. - * It will be closed in {@link #call}. + * Setting inputStream will ignore the path set. It will be closed in + * {@link #call}. * * @param inputStream * @return this command + * @since 3.5 */ public RepoCommand setInputStream(final InputStream inputStream) { this.inputStream = inputStream; |