diff --git a/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java b/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java index 6174258c6..78f909eea 100644 --- a/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java +++ b/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java @@ -65,6 +65,7 @@ class RefsUnreadableInMemoryRepository extends InMemoryRepository { failing = false; } + /** {@inheritDoc} */ @Override public RefDatabase getRefDatabase() { return refs; diff --git a/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/TestRepositoryResolver.java b/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/TestRepositoryResolver.java index 334e57c6d..c6a3e3b8d 100644 --- a/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/TestRepositoryResolver.java +++ b/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/TestRepositoryResolver.java @@ -50,7 +50,9 @@ import org.eclipse.jgit.transport.resolver.RepositoryResolver; import org.eclipse.jgit.transport.resolver.ServiceNotEnabledException; -/** A simple repository resolver for tests. */ +/** + * A simple repository resolver for tests. + */ public final class TestRepositoryResolver implements RepositoryResolver { @@ -59,8 +61,8 @@ public final class TestRepositoryResolver private final String repoName; /** - * Creates a new {@link TestRepositoryResolver} that resolves the given name to - * the given repository. + * Create a new {@link org.eclipse.jgit.http.test.TestRepositoryResolver} + * that resolves the given name to the given repository. * * @param repo * to resolve to @@ -72,6 +74,7 @@ public TestRepositoryResolver(TestRepository repo, String repoName) this.repoName = repoName; } + /** {@inheritDoc} */ @Override public Repository open(HttpServletRequest req, String name) throws RepositoryNotFoundException, ServiceNotEnabledException {