/**
* Loosen objects in a pack file which are not also in the newly-created
* pack files.
+ *
+ * @param inserter
+ * @param reader
+ * @param pack
+ * @param existing
+ * @throws IOException
*/
private void loosen(ObjectDirectoryInserter inserter, ObjectReader reader, PackFile pack, HashSet<ObjectId> existing)
throws IOException {
}
/**
- * Insert a loose object into the database. If createDuplicate is
- * true, write the loose object even if we already have it in the
- * loose or packed ODB.
+ * Insert a loose object into the database. If createDuplicate is true,
+ * write the loose object even if we already have it in the loose or packed
+ * ODB.
+ *
+ * @param type
+ * @param data
+ * @param off
+ * @param len
+ * @param createDuplicate
+ * @return ObjectId
+ * @throws IOException
*/
private ObjectId insert(
int type, byte[] data, int off, int len, boolean createDuplicate)
}
/**
- * Insert a loose object into the database. If createDuplicate is
- * true, write the loose object even if we already have it in the
- * loose or packed ODB.
+ * Insert a loose object into the database. If createDuplicate is true,
+ * write the loose object even if we already have it in the loose or packed
+ * ODB.
+ *
+ * @param type
+ * @param len
+ * @param is
+ * @param createDuplicate
+ * @return ObjectId
+ * @throws IOException
*/
ObjectId insert(int type, long len, InputStream is, boolean createDuplicate)
throws IOException {