Add missing @since to RepoCommand.setInputStream

Change-Id: I2fa1a5c28a1521a837aeaeb994e5cce8d7c4e645
This commit is contained in:
Robin Rosenberg 2014-06-10 09:59:17 +02:00
parent acd7ed5269
commit 79004dd42a
1 changed files with 3 additions and 2 deletions

View File

@ -427,11 +427,12 @@ public RepoCommand setPath(final String path) {
/** /**
* 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;