Merge "[findBugs] Make ChunkKey serializable"

This commit is contained in:
Robin Rosenberg 2012-07-26 17:21:51 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit d47403ea94
1 changed files with 4 additions and 1 deletions

View File

@ -47,13 +47,16 @@
import static org.eclipse.jgit.storage.dht.KeyUtils.parse32;
import static org.eclipse.jgit.util.RawParseUtils.decode;
import java.io.Serializable;
import java.text.MessageFormat;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.ObjectId;
/** Unique identifier of a {@link PackChunk} in the DHT. */
public final class ChunkKey implements RowKey {
public final class ChunkKey implements RowKey, Serializable {
private static final long serialVersionUID = 1L;
static final int KEYLEN = 49;
/**