// read file info
short replication = (short)conf.getInt("dfs.replication", 3);
for (int i = 0; i < numFiles; i++) {
UTF8 name = new UTF8();
name.readFields(in);
// version 0 does not support per file replication
if( !(imgVersion >= 0) ) {
replication = in.readShort(); // other versions do
replication = FSEditLog.adjustReplication( replication, conf );
}