Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
loicgreffier committed Oct 8, 2024
1 parent 5cce698 commit aa573ae
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ protected <K, V> TestInputTopic<K, V> createInputTestTopic(TopicWithSerde<K, V>
*/
@Deprecated(since = "1.1.0")
protected <K, V> TestInputTopic<K, V> createInputTestTopic(
com.michelin.kstreamplify.utils.TopicWithSerde<K, V> topicWithSerde) {
com.michelin.kstreamplify.utils.TopicWithSerde<K, V> topicWithSerde
) {
return createInputTestTopic(
new TopicWithSerde<>(
topicWithSerde.getUnPrefixedName(),
Expand Down Expand Up @@ -190,7 +191,9 @@ protected <K, V> TestOutputTopic<K, V> createOutputTestTopic(TopicWithSerde<K, V
* @deprecated Use {@link #createOutputTestTopic(TopicWithSerde)}
*/
@Deprecated(since = "1.1.0")
protected <K, V> TestOutputTopic<K, V> createOutputTestTopic(com.michelin.kstreamplify.utils.TopicWithSerde<K, V> topicWithSerde) {
protected <K, V> TestOutputTopic<K, V> createOutputTestTopic(
com.michelin.kstreamplify.utils.TopicWithSerde<K, V> topicWithSerde
) {
return createOutputTestTopic(
new TopicWithSerde<>(
topicWithSerde.getUnPrefixedName(),
Expand Down

0 comments on commit aa573ae

Please sign in to comment.