Details
Description
Since 2.7.0 interface:
org.apache.kafka.streams.processor.Processor<K, V>
became depricated.
It was replaced with interface:
org.apache.kafka.streams.processor.api.Processor<KIn, VIn, KOut, VOut>
which defines method:
void process(Record<KIn, VIn> record);
There is a sonar lint rule java:S6213:
"Restricted Identifiers should not be used as Identifiers" for:
- var
- yield
- record <----
Maybe this parameter could be renamed into something else to avoid this warning.