]> source.dussan.org Git - jgit.git/commitdiff
Make PackInserter public 98/114598/1
authorDave Borowitz <dborowitz@google.com>
Thu, 21 Dec 2017 14:46:55 +0000 (09:46 -0500)
committerDave Borowitz <dborowitz@google.com>
Thu, 21 Dec 2017 14:46:55 +0000 (09:46 -0500)
The intent with the setCompressionLevel and checkExisting methods (which
are already public) is for callers to be able to call them, but they
can't do that if the class itself is not public.

Change-Id: I014044fec3bfa1d33775500345efd60eb5d45bde

org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackInserter.java

index e6139fdc048f8ed92e019094f0aad3efb82949e4..ff959e8c9520cb748f7391314f8e961efa21fd3c 100644 (file)
@@ -99,7 +99,7 @@ import org.eclipse.jgit.util.sha1.SHA1;
  * Object inserter that inserts one pack per call to {@link #flush()}, and never
  * inserts loose objects.
  */
-class PackInserter extends ObjectInserter {
+public class PackInserter extends ObjectInserter {
        /** Always produce version 2 indexes, to get CRC data. */
        private static final int INDEX_VERSION = 2;