mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-19 14:02:13 +01:00
fix wrong javadoc
This commit is contained in:
@@ -69,20 +69,20 @@ import java.io.Serializable;
|
||||
* <br />
|
||||
* Retrieve a single {@link Changeset}:<br />
|
||||
* <pre><code>
|
||||
* LogCommand log = repositoryService.getLogCommand();
|
||||
* LogCommandBuilder log = repositoryService.getLogCommand();
|
||||
* Changeset changeset = log.getChangeset("id-of-the-commit");
|
||||
* </code></pre>
|
||||
*
|
||||
* Retrieve changesets of a {@link Repository} with paging:<br />
|
||||
* <pre><code>
|
||||
* LogCommand log = repositoryService.getLogCommand();
|
||||
* LogCommandBuilder log = repositoryService.getLogCommand();
|
||||
* ChangesetPagingResult changesetPagingResult =
|
||||
* log.setPagingStart(25).setPagingLimit(25).getChangesets();
|
||||
* </code></pre>
|
||||
*
|
||||
* Retrieve all changesets of a file in a {@link Repository}:<br />
|
||||
* <pre><code>
|
||||
* LogCommand log = repositoryService.getLogCommand();
|
||||
* LogCommandBuilder log = repositoryService.getLogCommand();
|
||||
* ChangesetPagingResult changesetPagingResult =
|
||||
* log.setPath("pom.xml").disablePagingLimit().getChangesets();
|
||||
* </code></pre>
|
||||
|
||||
Reference in New Issue
Block a user