Skip to content

Commit

Permalink
fix checkstyle test
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsdant committed Sep 20, 2024
1 parent 501be6c commit fe2ad32
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -337,13 +337,13 @@ private KafkaStreams buildWithDeduplicationTopology(final String stateDirPath) {
private KeyValueStore<Integer, Integer> store;

@Override
public void init(ProcessorContext<Integer, Integer> context) {
public void init(final ProcessorContext<Integer, Integer> context) {
this.context = context;
store = context.getStateStore(storeName);
}

@Override
public void process(Record<Integer, Integer> record) {
public void process(final Record<Integer, Integer> record) {
final Integer key = record.key();
final Integer value = record.value();

Expand Down

0 comments on commit fe2ad32

Please sign in to comment.