@ -311,7 +311,7 @@ public class PackWriter {
* Check whether object is configured to reuse deltas existing in
* Check whether object is configured to reuse deltas existing in
* repository .
* repository .
* < p >
* < p >
* Default setting : { @value # DEFAULT_REUSE_DELTAS }
* Default setting : { @link # DEFAULT_REUSE_DELTAS }
* < / p >
* < / p >
*
*
* @return true if object is configured to reuse deltas ; false otherwise .
* @return true if object is configured to reuse deltas ; false otherwise .
@ -334,7 +334,7 @@ public class PackWriter {
* computed to verify data .
* computed to verify data .
* < / p >
* < / p >
* < p >
* < p >
* Default setting : { @value # DEFAULT_REUSE_DELTAS }
* Default setting : { @link # DEFAULT_REUSE_DELTAS }
* < / p >
* < / p >
*
*
* @param reuseDeltas
* @param reuseDeltas
@ -348,7 +348,7 @@ public class PackWriter {
* Checks whether object is configured to reuse existing objects
* Checks whether object is configured to reuse existing objects
* representation in repository .
* representation in repository .
* < p >
* < p >
* Default setting : { @value # DEFAULT_REUSE_OBJECTS }
* Default setting : { @link # DEFAULT_REUSE_OBJECTS }
* < / p >
* < / p >
*
*
* @return true if writer is configured to reuse objects representation from
* @return true if writer is configured to reuse objects representation from
@ -364,7 +364,7 @@ public class PackWriter {
* compressed data is directly copied from such a pack file . Data checksum
* compressed data is directly copied from such a pack file . Data checksum
* is verified .
* is verified .
* < p >
* < p >
* Default setting : { @value # DEFAULT_REUSE_OBJECTS }
* Default setting : { @link # DEFAULT_REUSE_OBJECTS }
* < / p >
* < / p >
*
*
* @param reuseObjects
* @param reuseObjects
@ -380,7 +380,7 @@ public class PackWriter {
* reducing pack size ) or should store it as an object id ( legacy style ,
* reducing pack size ) or should store it as an object id ( legacy style ,
* compatible with old readers ) .
* compatible with old readers ) .
* < p >
* < p >
* Default setting : { @value # DEFAULT_DELTA_BASE_AS_OFFSET }
* Default setting : { @link # DEFAULT_DELTA_BASE_AS_OFFSET }
* < / p >
* < / p >
*
*
* @return true if delta base is stored as an offset ; false if it is stored
* @return true if delta base is stored as an offset ; false if it is stored
@ -395,7 +395,7 @@ public class PackWriter {
* pack file ( new approach reducing file size ) or as an object id ( legacy
* pack file ( new approach reducing file size ) or as an object id ( legacy
* approach , compatible with old readers ) .
* approach , compatible with old readers ) .
* < p >
* < p >
* Default setting : { @value # DEFAULT_DELTA_BASE_AS_OFFSET }
* Default setting : { @link # DEFAULT_DELTA_BASE_AS_OFFSET }
* < / p >
* < / p >
*
*
* @param deltaBaseAsOffset
* @param deltaBaseAsOffset
@ -436,7 +436,7 @@ public class PackWriter {
* Get maximum depth of delta chain set up for this writer . Generated chains
* Get maximum depth of delta chain set up for this writer . Generated chains
* are not longer than this value .
* are not longer than this value .
* < p >
* < p >
* Default setting : { @value # DEFAULT_MAX_DELTA_DEPTH }
* Default setting : { @link # DEFAULT_MAX_DELTA_DEPTH }
* < / p >
* < / p >
*
*
* @return maximum delta chain depth .
* @return maximum delta chain depth .
@ -450,7 +450,7 @@ public class PackWriter {
* not longer than this value . Too low value causes low compression level ,
* not longer than this value . Too low value causes low compression level ,
* while too big makes unpacking ( reading ) longer .
* while too big makes unpacking ( reading ) longer .
* < p >
* < p >
* Default setting : { @value # DEFAULT_MAX_DELTA_DEPTH }
* Default setting : { @link # DEFAULT_MAX_DELTA_DEPTH }
* < / p >
* < / p >
*
*
* @param maxDeltaDepth
* @param maxDeltaDepth
@ -475,7 +475,7 @@ public class PackWriter {
/ * *
/ * *
* Set the number of objects considered when searching for a delta base .
* Set the number of objects considered when searching for a delta base .
* < p >
* < p >
* Default setting : { @value # DEFAULT_DELTA_SEARCH_WINDOW_SIZE }
* Default setting : { @link # DEFAULT_DELTA_SEARCH_WINDOW_SIZE }
* < / p >
* < / p >
*
*
* @param objectCount
* @param objectCount
@ -838,9 +838,9 @@ public class PackWriter {
* < p >
* < p >
* At first , this method collects and sorts objects to pack , then deltas
* At first , this method collects and sorts objects to pack , then deltas
* search is performed if set up accordingly , finally pack stream is
* search is performed if set up accordingly , finally pack stream is
* written . { @link ProgressMonitor } tasks { @value # COMPRESSING_OBJECTS_PROGRESS }
* written . { @link ProgressMonitor } tasks { @link # COMPRESSING_OBJECTS_PROGRESS }
* ( only if reuseDeltas or reuseObjects is enabled ) and
* ( only if reuseDeltas or reuseObjects is enabled ) and
* { @value # WRITING_OBJECTS_PROGRESS } are updated during packing .
* { @link # WRITING_OBJECTS_PROGRESS } are updated during packing .
* < / p >
* < / p >
* < p >
* < p >
* All reused objects data checksum ( Adler32 / CRC32 ) is computed and
* All reused objects data checksum ( Adler32 / CRC32 ) is computed and