diff options
author | Ivan Frade <ifrade@google.com> | 2023-11-17 10:11:17 -0800 |
---|---|---|
committer | Ivan Frade <ifrade@google.com> | 2023-11-17 10:17:28 -0800 |
commit | 5c173c632d184d9fc5dd7994b2eccb7c9d28511f (patch) | |
tree | b17576df6ecf5e5ebee72b0e0eb12b99994e073a /org.eclipse.jgit.test/tst/org/eclipse/jgit/transport | |
parent | 6b4787a7278ad96366d0bf6cc120355390163aff (diff) | |
download | jgit-5c173c632d184d9fc5dd7994b2eccb7c9d28511f.tar.gz jgit-5c173c632d184d9fc5dd7994b2eccb7c9d28511f.zip |
Adjust javadoc to pass errorprone checks
bazel build //org.eclipse.jgit.test:all doesn't build due to
errorprone errors. This leds to disabling the checks and find the
errors later in the jenkins builder.
Fix javadoc errors reported by errorprone. This doesn't fix completely
the build but it is a step towards it.
Change-Id: Ic4ec93a2d71d4628bf3a05277c60157881156393
Diffstat (limited to 'org.eclipse.jgit.test/tst/org/eclipse/jgit/transport')
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/RequestValidatorTestCase.java | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/RequestValidatorTestCase.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/RequestValidatorTestCase.java index cc910b3b9f..f589a399a4 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/RequestValidatorTestCase.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/RequestValidatorTestCase.java @@ -70,20 +70,30 @@ public abstract class RequestValidatorTestCase { } /** + * Check if the validator accepts a reachable commit + * * @return true if a commit reachable from a visible tip (but not directly * the tip) is valid */ protected abstract boolean isReachableCommitValid(); - /** @return true if a commit not reachable from any tip is valid */ + /** + * Check if the validator accepts an unreachable commit + * + * @return true if a commit not reachable from any tip is valid + **/ protected abstract boolean isUnreachableCommitValid(); /** + * Check if the validator accepts a previously advertised tip + * * @return true if the commit directly pointed by an advertised ref is valid */ protected abstract boolean isAdvertisedTipValid(); /** + * Check if the validator accepts a previous unadvertised tip + * * @return true if the object directly pointed by a non-advertised ref is * valid */ @@ -92,17 +102,23 @@ public abstract class RequestValidatorTestCase { // UploadPack doesn't allow to ask for blobs when there is no // bitmap. Test both cases separately. /** + * Check if the validator accepts a reachable blob (repo with bitmaps) + * * @return true if a reachable blob is valid (and the repo has bitmaps) */ protected abstract boolean isReachableBlobValid_withBitmaps(); /** + * Check if the validator accepts a reachable blob (repo without bitmaps) + * * @return true if a reachable blob is valid (and the repo does NOT have * bitmaps) */ protected abstract boolean isReachableBlobValid_withoutBitmaps(); /** + * Check if the validator accepts an unreachable blob + * * @return true if a blob unreachable from any tip is valid */ protected abstract boolean isUnreachableBlobValid(); |