summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Borowitz <dborowitz@google.com>2017-12-21 11:12:13 -0500
committerDave Borowitz <dborowitz@google.com>2017-12-21 11:12:13 -0500
commitd8a24ac1cf17f5554d74a08760918a11972c9b11 (patch)
tree2cdce7ef352b7dcce6df12af995cdcabc18b876a
parent2464fa440f7585154c591d3a12f6778026da40ff (diff)
parent085d1f9599f6dae8fe90e2dd7df195d1c9736ec4 (diff)
downloadjgit-d8a24ac1cf17f5554d74a08760918a11972c9b11.tar.gz
jgit-d8a24ac1cf17f5554d74a08760918a11972c9b11.zip
Merge branch 'stable-4.9'
* stable-4.9: Make PackInserter public Change-Id: I367c6111661f3005419e2becd695e04e65202f97
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackInserter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackInserter.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackInserter.java
index 39cf5bd5da..7ff269694b 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackInserter.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackInserter.java
@@ -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;