Change requester to GET by default

This commit is contained in:
Liam Newman
2019-11-25 18:05:18 -08:00
parent 1b55b5fa3c
commit 3296cef02d
47 changed files with 252 additions and 180 deletions

View File

@@ -17,7 +17,7 @@ public class GHIssueBuilder {
GHIssueBuilder(GHRepository repo, String title) {
this.repo = repo;
this.builder = new Requester(repo.root);
this.builder = repo.root.retrieve().method("POST");
builder.with("title", title);
}