]> source.dussan.org Git - jgit.git/commitdiff
Add missing @since 7.1 to UploadPack#implies 42/1203542/1
authorMatthias Sohn <matthias.sohn@sap.com>
Tue, 5 Nov 2024 00:28:14 +0000 (01:28 +0100)
committerMatthias Sohn <matthias.sohn@sap.com>
Tue, 5 Nov 2024 00:28:14 +0000 (01:28 +0100)
Change-Id: Iabbe1f18a5022b4669a3352493c6fd35920ef25f

org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java

index 216cde1e37b61ddb5e6793bfa127e73a5a185f45..2270c5e5c561c72a91eb168fe8fd8d342924dcc6 100644 (file)
@@ -155,8 +155,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 7.1
                 */
                public boolean implies(RequestPolicy implied) {
                        return (bitmask & implied.bitmask) != 0;