update java doc since version

This commit is contained in:
Eduard Heimbuch
2020-11-10 10:08:15 +01:00
parent a97774f729
commit 1709fa0e3d
5 changed files with 6 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ public enum Command
MODIFICATIONS, MERGE, DIFF_RESULT, BRANCH, MODIFY,
/**
* @since 2.8.0
* @since 2.10.0
*/
LOOKUP;
}

View File

@@ -32,7 +32,7 @@ import java.util.Optional;
/**
* The lookup command executes a lookup for additional repository information.
*
* @since 2.8.0
* @since 2.10.0
*/
public class LookupCommandBuilder {

View File

@@ -436,7 +436,7 @@ public final class RepositoryService implements Closeable {
* @return instance of {@link LookupCommandBuilder}
* @throws CommandNotSupportedException if the command is not supported
* by the implementation of the repository service provider.
* @since 2.8.0
* @since 2.10.0
*/
public LookupCommandBuilder getLookupCommand() {
LOG.debug("create lookup command for repository {}",

View File

@@ -276,7 +276,7 @@ public abstract class RepositoryServiceProvider implements Closeable
}
/**
* @since 2.8.0
* @since 2.10.0
*/
public LookupCommand getLookupCommand()
{

View File

@@ -53,7 +53,7 @@ class SvnLookupCommandTest {
void shouldReturnEmptyOptional() {
LookupCommandRequest request = new LookupCommandRequest();
request.setType(String.class);
request.setArgs(new String[]{"props"});
request.setArgs(new String[]{"propget"});
Optional<Object> result = command.lookup(request);
@@ -68,7 +68,7 @@ class SvnLookupCommandTest {
LookupCommandRequest request = new LookupCommandRequest();
request.setType(String.class);
request.setArgs(new String[]{"props", "uuid"});
request.setArgs(new String[]{"propget", "uuid", "/"});
Optional<Object> result = command.lookup(request);