PackConfig: fix @since tags

Change-Id: Ia513f7cdbf3c197e8661720fc804984ff165fc5c
This commit is contained in:
Matthias Sohn 2023-10-13 00:19:12 +02:00
parent 244165fc56
commit 4d6671b4ce
1 changed files with 9 additions and 6 deletions

View File

@ -1007,11 +1007,13 @@ public void setBuildBitmaps(boolean buildBitmaps) {
/** /**
* Set whether to include objects in `.keep` files when repacking. * 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 * @param packKeptObjects
* `.keep` files when repacking. * boolean indicating whether to include objects in `.keep` files
* @since 5.13 * when repacking.
* @since 5.13.3
*/ */
public void setPackKeptObjects(boolean packKeptObjects) { public void setPackKeptObjects(boolean packKeptObjects) {
this.packKeptObjects = packKeptObjects; this.packKeptObjects = packKeptObjects;
@ -1022,8 +1024,9 @@ public void setPackKeptObjects(boolean packKeptObjects) {
* *
* Default setting: {@value #DEFAULT_PACK_KEPT_OBJECTS} * Default setting: {@value #DEFAULT_PACK_KEPT_OBJECTS}
* *
* @return True if objects in `.keep` files should be included when repacking. * @return True if objects in `.keep` files should be included when
* @since 5.13 * repacking.
* @since 5.13.3
*/ */
public boolean isPackKeptObjects() { public boolean isPackKeptObjects() {
return packKeptObjects; return packKeptObjects;