9293949596979899100101102
} ChunkKey findChunk(AnyObjectId id) { RefCache c = cache.get(); if (c != null) { IdWithChunk i = c.hints.get(id); if (i != null) return i.getChunkKey(); } return null; }
419420421422423424425
private static ObjectId idFrom(RefData.Id src) { ObjectId id = ObjectId.fromString(src.getObjectName()); if (!src.hasChunkKey()) return id; return new IdWithChunk(id, ChunkKey.fromString(src.getChunkKey())); }