From 5ff2cc75599b381c306f84adbebe3cb6b6ebdeb3 Mon Sep 17 00:00:00 2001 From: gitnexbot Date: Mon, 17 Jul 2023 08:00:03 +0000 Subject: [PATCH] Synchronizing API and documentation updates --- .../gitnex/tea4j/v2/apis/custom/CustomApi.java | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java b/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java index aef0f78..1bf5d7e 100644 --- a/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java +++ b/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java @@ -115,21 +115,4 @@ public interface CustomApi { @retrofit2.http.Path("repo") String repo, @retrofit2.http.Path("filepath") String filepath, @retrofit2.http.Query("ref") String ref); - - /** - * Get a file or it's LFS object from a repository - * - * @param owner owner of the repo (required) - * @param repo name of the repo (required) - * @param filepath filepath of the file to get (required) - * @param ref The name of the commit/branch/tag. Default the repository’s default branch (usually - * master) (optional) - * @return Call; - */ - @GET("repos/{owner}/{repo}/media/{filepath}") - Call repoGetRawFileOrLFS( - @retrofit2.http.Path("owner") String owner, - @retrofit2.http.Path("repo") String repo, - @retrofit2.http.Path("filepath") String filepath, - @retrofit2.http.Query("ref") String ref); }