317318319320321322323324325326327
static Reference readSplitInfo(final Path p, final FileSystem fs) throws IOException { FSDataInputStream in = fs.open(p); try { Reference r = new Reference(); r.readFields(in); return r; } finally { in.close(); } }