@@ -196,7 +196,7 @@ public Stream<Project> getProjectsStream() throws GitLabApiException {
196
196
* @param statistics include project statistics
197
197
* @return a list of projects accessible by the authenticated user and matching the supplied parameters
198
198
* @throws GitLabApiException if any exception occurs
199
- * @deprecated Will be removed in version 5 .0, replaced by {@link #getProjects(Boolean, Visibility,
199
+ * @deprecated Will be removed in version 6 .0, replaced by {@link #getProjects(Boolean, Visibility,
200
200
* Constants.ProjectOrderBy, Constants.SortOrder, String, Boolean, Boolean, Boolean, Boolean, Boolean)}
201
201
*/
202
202
@ Deprecated
@@ -1510,7 +1510,7 @@ public List<Member> getAllMembers(Object projectIdOrPath) throws GitLabApiExcept
1510
1510
* @param perPage the number of Member instances per page
1511
1511
* @return the project members viewable by the authenticated user, including inherited members through ancestor groups
1512
1512
* @throws GitLabApiException if any exception occurs
1513
- * @deprecated Will be removed in version 5 .0
1513
+ * @deprecated Will be removed in version 6 .0
1514
1514
*/
1515
1515
@ Deprecated
1516
1516
public List <Member > getAllMembers (Object projectIdOrPath , int page , int perPage ) throws GitLabApiException {
@@ -2203,7 +2203,7 @@ public ProjectHook modifyHook(ProjectHook hook) throws GitLabApiException {
2203
2203
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
2204
2204
* @return a list of project's issues
2205
2205
* @throws GitLabApiException if any exception occurs
2206
- * @deprecated Will be removed in version 5 .0, replaced by {@link IssuesApi#getIssues(Object)}
2206
+ * @deprecated Will be removed in version 6 .0, replaced by {@link IssuesApi#getIssues(Object)}
2207
2207
*/
2208
2208
@ Deprecated
2209
2209
public List <Issue > getIssues (Object projectIdOrPath ) throws GitLabApiException {
@@ -2220,7 +2220,7 @@ public List<Issue> getIssues(Object projectIdOrPath) throws GitLabApiException {
2220
2220
* @param perPage the number of issues per page
2221
2221
* @return the list of issues in the specified range
2222
2222
* @throws GitLabApiException if any exception occurs
2223
- * @deprecated Will be removed in version 5 .0, replaced by {@link IssuesApi#getIssues(Object, int, int)}
2223
+ * @deprecated Will be removed in version 6 .0, replaced by {@link IssuesApi#getIssues(Object, int, int)}
2224
2224
*/
2225
2225
@ Deprecated
2226
2226
public List <Issue > getIssues (Object projectIdOrPath , int page , int perPage ) throws GitLabApiException {
@@ -2237,7 +2237,7 @@ public List<Issue> getIssues(Object projectIdOrPath, int page, int perPage) thro
2237
2237
* @param itemsPerPage the number of issues per page
2238
2238
* @return the list of issues in the specified range
2239
2239
* @throws GitLabApiException if any exception occurs
2240
- * @deprecated Will be removed in version 5 .0, replaced by {@link IssuesApi#getIssues(Object, int)}
2240
+ * @deprecated Will be removed in version 6 .0, replaced by {@link IssuesApi#getIssues(Object, int)}
2241
2241
*/
2242
2242
@ Deprecated
2243
2243
public Pager <Issue > getIssues (Object projectIdOrPath , int itemsPerPage ) throws GitLabApiException {
@@ -2252,7 +2252,7 @@ public Pager<Issue> getIssues(Object projectIdOrPath, int itemsPerPage) throws G
2252
2252
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
2253
2253
* @return a Stream of the project's issues
2254
2254
* @throws GitLabApiException if any exception occurs
2255
- * @deprecated Will be removed in version 5 .0, replaced by {@link IssuesApi#getIssues(Object)}
2255
+ * @deprecated Will be removed in version 6 .0, replaced by {@link IssuesApi#getIssues(Object)}
2256
2256
*/
2257
2257
@ Deprecated
2258
2258
public Stream <Issue > getIssuesStream (Object projectIdOrPath ) throws GitLabApiException {
@@ -2268,7 +2268,7 @@ public Stream<Issue> getIssuesStream(Object projectIdOrPath) throws GitLabApiExc
2268
2268
* @param issueId the internal ID of a project's issue
2269
2269
* @return the specified Issue instance
2270
2270
* @throws GitLabApiException if any exception occurs
2271
- * @deprecated Will be removed in version 5 .0, replaced by {@link IssuesApi#getIssue(Object, Long)}
2271
+ * @deprecated Will be removed in version 6 .0, replaced by {@link IssuesApi#getIssue(Object, Long)}
2272
2272
*/
2273
2273
@ Deprecated
2274
2274
public Issue getIssue (Object projectIdOrPath , Long issueId ) throws GitLabApiException {
@@ -2284,7 +2284,7 @@ public Issue getIssue(Object projectIdOrPath, Long issueId) throws GitLabApiExce
2284
2284
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
2285
2285
* @param issueId the internal ID of a project's issue
2286
2286
* @throws GitLabApiException if any exception occurs
2287
- * @deprecated Will be removed in version 5 .0, replaced by {@link IssuesApi#deleteIssue(Object, Long)}
2287
+ * @deprecated Will be removed in version 6 .0, replaced by {@link IssuesApi#deleteIssue(Object, Long)}
2288
2288
*/
2289
2289
@ Deprecated
2290
2290
public void deleteIssue (Object projectIdOrPath , Long issueId ) throws GitLabApiException {
0 commit comments