summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2023-10-13 00:19:12 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2023-10-13 00:19:12 +0200
commit4d6671b4cec3b3822c75089f3a8aa16c39d49307 (patch)
tree7c92d5c7d7a4b14bbb4b6489acef463611fe1aed
parent244165fc56bd7b15d01f37496a1a5039b4ead300 (diff)
downloadjgit-4d6671b4cec3b3822c75089f3a8aa16c39d49307.tar.gz
jgit-4d6671b4cec3b3822c75089f3a8aa16c39d49307.zip
PackConfig: fix @since tags
Change-Id: Ia513f7cdbf3c197e8661720fc804984ff165fc5c
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java15
1 files changed, 9 insertions, 6 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java
index 47ea733faf..ff925dbe8d 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java
@@ -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;