Skip to content

Commit 0e96088

Browse files
committed
Removed unused param in delete call.
1 parent 4080db2 commit 0e96088

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/gitlab4j/api/NotesApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ public void deleteMergeRequestNote(Object projectIdOrPath, Integer mergeRequestI
427427
}
428428

429429
Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT);
430-
delete(expectedStatus, getDefaultPerPageParam(),
430+
delete(expectedStatus, null,
431431
"projects", getProjectIdOrPath(projectIdOrPath), "merge_requests", mergeRequestIid, "notes", noteId);
432432
}
433433
}

0 commit comments

Comments
 (0)