summaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2015-08-19 15:10:38 +0200
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2015-08-19 15:10:47 +0200
commit82564709cf06447b8a7e5fcadc609d892fc85509 (patch)
tree1d8e4c289b67dda92639a1e7d088947625078035 /sonar-plugin-api
parentb59537c890314a22a1fa44c41fea1b1bdcc726eb (diff)
downloadsonarqube-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.java2
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);
}