From adf9b5f353df7281369f3a82646b5677914beb8c Mon Sep 17 00:00:00 2001 From: Juergen Fickel Date: Mon, 3 May 2021 16:21:16 +0200 Subject: [PATCH] Issue #1043: Set '@since' version to 2.0.0. Signed-off-by: Juergen Fickel --- .../java/org/eclipse/ditto/protocoladapter/TopicPath.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/protocol-adapter/src/main/java/org/eclipse/ditto/protocoladapter/TopicPath.java b/protocol-adapter/src/main/java/org/eclipse/ditto/protocoladapter/TopicPath.java index 7cdda3b83c..f6318801b1 100755 --- a/protocol-adapter/src/main/java/org/eclipse/ditto/protocoladapter/TopicPath.java +++ b/protocol-adapter/src/main/java/org/eclipse/ditto/protocoladapter/TopicPath.java @@ -150,7 +150,7 @@ default boolean isWildcardTopic() { * * @param expectedGroup the group to check for. * @return {@code true} if this TopicPath has group {@code expectedGroup}, {@code false} else. - * @since 2.1.0 + * @since 2.0.0 */ boolean isGroup(@Nullable Group expectedGroup); @@ -159,7 +159,7 @@ default boolean isWildcardTopic() { * * @param expectedChannel the channel to check for. * @return {@code true} if this TopicPath has channel {@code expectedChannel}, {@code false} else. - * @since 2.1.0 + * @since 2.0.0 */ boolean isChannel(@Nullable Channel expectedChannel); @@ -168,7 +168,7 @@ default boolean isWildcardTopic() { * * @param expectedCriterion the criterion to check for. * @return {@code true} if this TopicPath has criterion {@code expectedCriterion}, {@code false} else. - * @since 2.1.0 + * @since 2.0.0 */ boolean isCriterion(@Nullable Criterion expectedCriterion); @@ -177,7 +177,7 @@ default boolean isWildcardTopic() { * * @param expectedAction the action to check for. * @return {@code true} if this TopicPath has action {@code expectedAction}, {@code false} else. - * @since 2.1.0 + * @since 2.0.0 */ boolean isAction(@Nullable TopicPath.Action expectedAction);