Skip to content

Commit

Permalink
Resolve API update KafkaItemReader and Writer Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cppwfs committed Aug 26, 2024
1 parent 1fa3300 commit 1fb7c46
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,11 @@ public void addBundleUpdateHandler(String name, Consumer<SslBundle> updateHandle
throws NoSuchSslBundleException {

}

@Override
public List<String> getBundleNames() {
return List.of();
}
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ public void addBundleUpdateHandler(String name, java.util.function.Consumer<SslB
throws NoSuchSslBundleException {

}

@Override
public List<String> getBundleNames() {
return List.of();
}
};
}

Expand Down

0 comments on commit 1fb7c46

Please sign in to comment.