Minor comment update

This commit is contained in:
Nikolay Martynov 2019-07-12 16:26:39 -04:00
parent 21213495df
commit 6516bd7ad7
1 changed files with 4 additions and 2 deletions

View File

@ -123,13 +123,15 @@ public class TracingList implements List<ConsumerRecord> {
@Override
public ListIterator<ConsumerRecord> listIterator() {
// TODO: should this be instrumented as well?
// TODO: the API for ListIterator is not really good to instrument it in context of Kafka
// Consumer so we will not do that for now
return delegate.listIterator();
}
@Override
public ListIterator<ConsumerRecord> listIterator(final int index) {
// TODO: should this be instrumented as well?
// TODO: the API for ListIterator is not really good to instrument it in context of Kafka
// Consumer so we will not do that for now
return delegate.listIterator(index);
}