Change-Id: I5b3e99e9e658fe272a9e171db04b0f20e48ed8d3
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
*/
public class ObjectId extends AnyObjectId implements Serializable {
private static final long serialVersionUID = 1L;
- private static final ObjectId ZEROID;
+
+ private static final ObjectId ZEROID;
private static final String ZEROID_STR;
return this;
}
- private void writeObject(ObjectOutputStream os) throws IOException {
+ private void writeObject(ObjectOutputStream os) throws IOException {
os.writeInt(w1);
os.writeInt(w2);
os.writeInt(w3);
os.writeInt(w5);
}
- private void readObject(ObjectInputStream ois) throws IOException {
+ private void readObject(ObjectInputStream ois) throws IOException {
w1 = ois.readInt();
w2 = ois.readInt();
w3 = ois.readInt();