]> source.dussan.org Git - jgit.git/commitdiff
PackConfig: fix @since tags 01/204901/1
authorMatthias Sohn <matthias.sohn@sap.com>
Thu, 12 Oct 2023 22:19:12 +0000 (00:19 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Thu, 12 Oct 2023 22:19:12 +0000 (00:19 +0200)
Change-Id: Ia513f7cdbf3c197e8661720fc804984ff165fc5c

org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java

index 47ea733fafd962774877c0ea4ec7795dd1f93349..ff925dbe8de0b74d36c778561f29a24cdf87b06a 100644 (file)
@@ -1007,11 +1007,13 @@ public class PackConfig {
        /**
         * Set whether to include objects in `.keep` files when repacking.
         *
-        * <p>Default setting: {@value #DEFAULT_PACK_KEPT_OBJECTS}
+        * <p>
+        * Default setting: {@value #DEFAULT_PACK_KEPT_OBJECTS}
         *
-        * @param packKeptObjects boolean indicating whether to include objects in
-        *     `.keep` files when repacking.
-        * @since 5.13
+        * @param packKeptObjects
+        *            boolean indicating whether to include objects in `.keep` files
+        *            when repacking.
+        * @since 5.13.3
         */
        public void setPackKeptObjects(boolean packKeptObjects) {
                this.packKeptObjects = packKeptObjects;
@@ -1022,8 +1024,9 @@ public class PackConfig {
         *
         * Default setting: {@value #DEFAULT_PACK_KEPT_OBJECTS}
         *
-        * @return True if objects in `.keep` files should be included when repacking.
-        * @since 5.13
+        * @return True if objects in `.keep` files should be included when
+        *         repacking.
+        * @since 5.13.3
         */
        public boolean isPackKeptObjects() {
                return packKeptObjects;