While overriding code:
@Override
public void open(ExecutionContext executionContext) {
super.open(executionContext);
from: org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
I receive an IntelliJ warning:
Not annotated parameter overrides @??? parameter less... (Strg+F1) Inspection info: Reports problems related to @Nullable and @NotNull annotations usage configured in Constant conditions & exceptions inspection.
What can I do to avoid that?

