package eu.dnetlib.data.tool.mapreduce; import java.io.IOException; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.Mapper; //Mapper public class PassThroughMapper extends Mapper { @Override public void map(Text key, Text record, Context context) throws IOException, InterruptedException { context.write(key, record); } }