sortValue = (WritableComparable)sortClass.newInstance();
}
catch (Exception e) {
throw new IOException(e.toString());
}
sortValue.readFields(in); // read sortValue
String dedupValue = Text.readString(in); // read dedupValue
hits[i] = new Hit(indexDocNo, sortValue, dedupValue);
}
}