(final LongWritable key, final Text value, final Context context)
| 57 | } |
| 58 | |
| 59 | @Override |
| 60 | public void map(final LongWritable key, final Text value, final Context context) { |
| 61 | final BurstMap parsed = burster.parse(value.toString()); |
| 62 | if(!parsed.isEmpty()) { |
| 63 | accum.trackVariableDefsFromRow(parsed); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | @Override |
| 68 | public void cleanup(final Context context) throws IOException, InterruptedException { |
nothing calls this directly
no test coverage detected