Minor comment update
This commit is contained in:
parent
21213495df
commit
6516bd7ad7
|
@ -123,13 +123,15 @@ public class TracingList implements List<ConsumerRecord> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ListIterator<ConsumerRecord> listIterator() {
|
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();
|
return delegate.listIterator();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ListIterator<ConsumerRecord> listIterator(final int index) {
|
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);
|
return delegate.listIterator(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue