Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java')
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java
index f51748ce..f9dad445 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/RepositoryService.java
@@ -900,7 +900,7 @@ public class RepositoryService extends GitHubService {
* @return repository hook
* @throws IOException
*/
- public RepositoryHook getHook(IRepositoryIdProvider repository, int hookId)
+ public RepositoryHook getHook(IRepositoryIdProvider repository, long hookId)
throws IOException {
String id = getId(repository);
StringBuilder uri = new StringBuilder(SEGMENT_REPOS);
@@ -958,7 +958,7 @@ public class RepositoryService extends GitHubService {
* @param hookId
* @throws IOException
*/
- public void deleteHook(IRepositoryIdProvider repository, int hookId)
+ public void deleteHook(IRepositoryIdProvider repository, long hookId)
throws IOException {
String id = getId(repository);
StringBuilder uri = new StringBuilder(SEGMENT_REPOS);
@@ -976,7 +976,7 @@ public class RepositoryService extends GitHubService {
* @param hookId
* @throws IOException
*/
- public void testHook(IRepositoryIdProvider repository, int hookId)
+ public void testHook(IRepositoryIdProvider repository, long hookId)
throws IOException {
String id = getId(repository);
StringBuilder uri = new StringBuilder(SEGMENT_REPOS);

Back to the top