Merge "PackExt: Add a reverse index extension."

This commit is contained in:
Ivan Frade 2022-11-17 12:38:10 -05:00 committed by Gerrit Code Review @ Eclipse.org
commit 5c033a98f6
1 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,10 @@ public enum PackExt {
BITMAP_INDEX("bitmap"), //$NON-NLS-1$
/** A reftable file. */
REFTABLE("ref"); //$NON-NLS-1$
REFTABLE("ref"), //$NON-NLS-1$
/** A pack reverse index file extension. */
REVERSE_INDEX("rev"); //$NON-NLS-1$
private final String ext;