Browse Source

Add missing @since to RepoCommand.setInputStream

Change-Id: I2fa1a5c28a1521a837aeaeb994e5cce8d7c4e645
stable-3.5
Robin Rosenberg 11 years ago
parent
commit
79004dd42a
  1. 5
      org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java

5
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. * Set the input stream to the manifest XML.
* *
* Setting inputStream will ignore the path set. * Setting inputStream will ignore the path set. It will be closed in
* It will be closed in {@link #call}. * {@link #call}.
* *
* @param inputStream * @param inputStream
* @return this command * @return this command
* @since 3.5
*/ */
public RepoCommand setInputStream(final InputStream inputStream) { public RepoCommand setInputStream(final InputStream inputStream) {
this.inputStream = inputStream; this.inputStream = inputStream;

Loading…
Cancel
Save