diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-12-01 21:59:03 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-12-02 23:18:21 +0100 |
commit | 702db13af2b96c0f699fa6be0a63ba281535f337 (patch) | |
tree | d3013dc97c8fdc005a9b8a602f69e54be4505ab0 /org.eclipse.jgit/src/org/eclipse/jgit/transport | |
parent | 9018baf9fd1923a3566c32e6cd577137824409c4 (diff) | |
download | jgit-702db13af2b96c0f699fa6be0a63ba281535f337.tar.gz jgit-702db13af2b96c0f699fa6be0a63ba281535f337.zip |
UploadPack#implies: add missing @since tag
The method was originally introduced in 7.1 and then back ported to the
stable-6.10 branch.
Change-Id: I7250013227a666de44e439802d51110bba5af2b9
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/transport')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java index e9ea9b25a6..968728de8d 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java @@ -156,8 +156,10 @@ public class UploadPack implements Closeable { /** * Check if the current policy implies another, based on its bitmask. * - * @param implied the implied policy based on its bitmask. + * @param implied + * the implied policy based on its bitmask. * @return true if the policy is implied. + * @since 6.10.1 */ public boolean implies(RequestPolicy implied) { return (bitmask & implied.bitmask) != 0; |