Skip to content

Commit 2d76df2

Browse files
committed
reftable: reserve standard PackExt
Reserve "ref" extension for reftable files. This allows them to be used in a DFS repository as a stream in a DfsPackDescription. Change-Id: Ife781bb64d0bb063333183ad2be70a41a2482513
1 parent 0aae64c commit 2d76df2

File tree

1 file changed

+3
-0
lines changed
  • org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack

1 file changed

+3
-0
lines changed

org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackExt.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ public class PackExt {
5959
/** A pack bitmap index file extension. */
6060
public static final PackExt BITMAP_INDEX = newPackExt("bitmap"); //$NON-NLS-1$
6161

62+
/** A reftable file. */
63+
public static final PackExt REFTABLE = newPackExt("ref"); //$NON-NLS-1$
64+
6265
/** @return all of the PackExt values. */
6366
public static PackExt[] values() {
6467
return VALUES;

0 commit comments

Comments
 (0)