Skip to content

Commit

Permalink
Remove forRemoval warnings on deprecation (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
loicgreffier authored Oct 8, 2024
1 parent 7798068 commit 5beb68c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @deprecated Use {@link com.michelin.kstreamplify.serde.SerdesUtils}.
*/
@Deprecated(forRemoval = true, since = "1.1.0")
@Deprecated(since = "1.1.0")
public final class SerdesUtils {
private SerdesUtils() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @deprecated Use {@link com.michelin.kstreamplify.topic.TopicUtils}.
*/
@Deprecated(forRemoval = true, since = "1.1.0")
@Deprecated(since = "1.1.0")
public final class TopicUtils {
private TopicUtils() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @param <V> The model used as the value avro of the topic.
* @deprecated Use {@link com.michelin.kstreamplify.serde.TopicWithSerde}.
*/
@Deprecated(forRemoval = true, since = "1.1.0")
@Deprecated(since = "1.1.0")
@AllArgsConstructor(access = AccessLevel.PUBLIC)
public class TopicWithSerde<K, V> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @deprecated Use {@link com.michelin.kstreamplify.store.WindowStateStoreUtils}.
*/
@Deprecated(forRemoval = true, since = "1.1.0")
@Deprecated(since = "1.1.0")
public class WindowStateStoreUtils {
private WindowStateStoreUtils() {
}
Expand Down

0 comments on commit 5beb68c

Please sign in to comment.