diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-08-19 15:10:38 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-08-19 15:10:47 +0200 |
commit | 82564709cf06447b8a7e5fcadc609d892fc85509 (patch) | |
tree | 1d8e4c289b67dda92639a1e7d088947625078035 /sonar-plugin-api | |
parent | b59537c890314a22a1fa44c41fea1b1bdcc726eb (diff) | |
download | sonarqube-82564709cf06447b8a7e5fcadc609d892fc85509.tar.gz sonarqube-82564709cf06447b8a7e5fcadc609d892fc85509.zip |
SONAR-6485 WS permissions/search_project_permissions add paging field in response
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/utils/Paging.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/utils/Paging.java b/sonar-plugin-api/src/main/java/org/sonar/api/utils/Paging.java index 1945e1cc402..d9439514a3c 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/utils/Paging.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/utils/Paging.java @@ -45,10 +45,10 @@ public class Paging { this.total = total; } - @Deprecated /** * @deprecated since 5.2 please use the forPageIndex(...) builder method */ + @Deprecated public static Paging create(int pageSize, int pageIndex, int totalItems) { return new Paging(pageSize, pageIndex, totalItems); } |