PackExt: Define new extension for the object size index

Change-Id: I6bbaf43b4e6fb456ca0e9e0c6efcfeded0f94d6d
This commit is contained in:
Ivan Frade 2022-01-04 12:30:10 -08:00
parent 176f17d05e
commit ad07196d60
1 changed files with 4 additions and 1 deletions

View File

@ -33,7 +33,10 @@ public enum PackExt {
REVERSE_INDEX("rev"), //$NON-NLS-1$
/** A commit graph file extension. */
COMMIT_GRAPH("graph"); //$NON-NLS-1$
COMMIT_GRAPH("graph"), //$NON-NLS-1$
/** An object size index. */
OBJECT_SIZE_INDEX("objsize"); //$NON-NLS-1$
private final String ext;