From e69c1b9730ebd2c728b5e3acef05f42e974dbdec Mon Sep 17 00:00:00 2001 From: August Detlefsen Date: Wed, 13 Nov 2024 15:26:18 -0800 Subject: [PATCH] Update src/main/java/org/kohsuke/github/GHRepository.java Committing @bitwiseman suggestion Co-authored-by: Liam Newman --- src/main/java/org/kohsuke/github/GHRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/kohsuke/github/GHRepository.java b/src/main/java/org/kohsuke/github/GHRepository.java index c5dd9b9854..a0cdbf8eda 100644 --- a/src/main/java/org/kohsuke/github/GHRepository.java +++ b/src/main/java/org/kohsuke/github/GHRepository.java @@ -2723,7 +2723,7 @@ public List listCodeownersErrors() throws IOException { * the io exception */ public PagedIterable listContributors() throws IOException { - return root().createRequest().withUrlPath(getApiTailUrl("contributors")).toIterable(Contributor[].class, null); + return listContributors(null); } /**