250251252253254255256257
public LongWrapper() { } @Override public void writeExternal(ObjectOutput out) throws IOException { Bytes b = (Bytes) out; b.writeInt48(l); }
256257258259260261262263
b.writeInt48(l); } @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { Bytes b = (Bytes) in; l = b.readInt48(); }