Browse Source

Merge "[findBugs] Make ChunkKey serializable"

stable-2.1
Robin Rosenberg 12 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
d47403ea94
  1. 5
      org.eclipse.jgit.storage.dht/src/org/eclipse/jgit/storage/dht/ChunkKey.java

5
org.eclipse.jgit.storage.dht/src/org/eclipse/jgit/storage/dht/ChunkKey.java

@ -47,13 +47,16 @@ import static org.eclipse.jgit.storage.dht.KeyUtils.format32;
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;
/**

Loading…
Cancel
Save