From 7a5d59ec64c9969a2b16594870ecd480e8c8bfe2 Mon Sep 17 00:00:00 2001 From: qwerty287 Date: Wed, 20 Jul 2022 14:28:03 +0200 Subject: [PATCH] Fix import --- .../main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/custom/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java b/custom/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java index 0f6b980..5495e13 100644 --- a/custom/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java +++ b/custom/src/main/java/org/gitnex/tea4j/v2/apis/custom/CustomApi.java @@ -1,6 +1,7 @@ package org.gitnex.tea4j.v2.apis.custom; import org.gitnex.tea4j.v2.models.*; +import okhttp3.ResponseBody; import retrofit2.Call; import retrofit2.http.*; @@ -107,7 +108,7 @@ public interface CustomApi { * @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; + * @return Call; */ @GET("repos/{owner}/{repo}/raw/{filepath}") Call repoGetRawFile( @@ -124,7 +125,7 @@ public interface CustomApi { * @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; + * @return Call; */ @GET("repos/{owner}/{repo}/media/{filepath}") Call repoGetRawFileOrLFS(