Expose IntraLineDiffKey components with public getters

Grabbing these might be handy in a custom cache implementation
that needs to serialize the IntraLineDiffKey.

Change-Id: I51aec72f2c5409479116696b3b345dd4b8846c6c
This commit is contained in:
Shawn O. Pearce
2012-06-01 16:13:12 -07:00
parent bcf1df295f
commit f42a6c427c

View File

@@ -70,11 +70,11 @@ public class IntraLineDiffKey implements Serializable {
return edits; return edits;
} }
ObjectId getBlobA() { public ObjectId getBlobA() {
return aId; return aId;
} }
ObjectId getBlobB() { public ObjectId getBlobB() {
return bId; return bId;
} }