(final LongWritable key, final Text value, final Context context)
| 154 | } |
| 155 | |
| 156 | @Override |
| 157 | public void map(final LongWritable key, final Text value, final Context context) { |
| 158 | final BurstMap parsed = burster.parse(value.toString()); |
| 159 | if(!parsed.isEmpty()) { |
| 160 | accum.trackVariableLevelsFromRow(parsed); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | @Override |
| 165 | public void cleanup(final Context context) throws IOException, InterruptedException { |
nothing calls this directly
no test coverage detected