Commit e02b03c3 authored by CWolff92's avatar CWolff92 Committed by GitHub

Added getNote(issue, noteId) to get a single note

parent ac3c119c
......@@ -1417,7 +1417,7 @@ public class GitlabAPI {
}
}
public GitlabNote getNote(Gitlabissue issue, Integer noteId) throws IOException {
public GitlabNote getNote(GitlabIssue issue, Integer noteId) throws IOException {
String tailUrl = GitlabProject.URL + "/" + issue.getProjectId() +
GitlabIssue.URL + "/" + issue.getId() +
GitlabNote.URL + "/" + noteId;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment