diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-04-11 11:34:57 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-04-11 11:34:57 +0200 |
commit | 5508b29fc23d02d4046fca21c22637f1a0e0c429 (patch) | |
tree | 56c3f340447c58cbc1b15cbc8e20de5b26a39bbc /sonar-ws-client | |
parent | f1dcd9e88ffcc4cb63dcac53fc7a6e3ae15c4401 (diff) | |
download | sonarqube-5508b29fc23d02d4046fca21c22637f1a0e0c429.tar.gz sonarqube-5508b29fc23d02d4046fca21c22637f1a0e0c429.zip |
Rename version 2.15 to 3.0
Diffstat (limited to 'sonar-ws-client')
-rw-r--r-- | sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewQuery.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewQuery.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewQuery.java index da420c118a9..9a18384f9b9 100644 --- a/sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewQuery.java +++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewQuery.java @@ -165,7 +165,7 @@ public class ReviewQuery extends Query<Review> { } /** - * @deprecated since 2.15. Searching by user ID is not possible anymore. Use {@link #getAuthorLogins()} instead. + * @deprecated since 3.0. Searching by user ID is not possible anymore. Use {@link #getAuthorLogins()} instead. */ @Deprecated public String[] getAuthorLoginsOrIds() { @@ -173,7 +173,7 @@ public class ReviewQuery extends Query<Review> { } /** - * @deprecated since 2.15. Searching by user ID is not possible anymore. Use {@link #setAuthorLogins(String...)} instead. + * @deprecated since 3.0. Searching by user ID is not possible anymore. Use {@link #setAuthorLogins(String...)} instead. */ @Deprecated public ReviewQuery setAuthorLoginsOrIds(String... authorLoginsOrIds) { @@ -198,7 +198,7 @@ public class ReviewQuery extends Query<Review> { } /** - * @deprecated since 2.15. Searching by user ID is not possible anymore. Use {@link #getAssigneeLogins()} instead. + * @deprecated since 3.0. Searching by user ID is not possible anymore. Use {@link #getAssigneeLogins()} instead. */ @Deprecated public String[] getAssigneeLoginsOrIds() { @@ -206,7 +206,7 @@ public class ReviewQuery extends Query<Review> { } /** - * @deprecated since 2.15. Searching by user ID is not possible anymore. Use {@link #setAssigneeLogins(String...)} instead. + * @deprecated since 3.0. Searching by user ID is not possible anymore. Use {@link #setAssigneeLogins(String...)} instead. */ @Deprecated public ReviewQuery setAssigneeLoginsOrIds(String... assigneeLoginsOrIds) { |