File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed
retrofit-converter/src/main/java/moe/banana/jsonapi2 Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change 3
3
import com .squareup .moshi .JsonAdapter ;
4
4
import com .squareup .moshi .Moshi ;
5
5
import com .squareup .moshi .Types ;
6
+ import okhttp3 .MediaType ;
7
+ import okhttp3 .RequestBody ;
8
+ import okhttp3 .ResponseBody ;
9
+ import okio .Buffer ;
10
+ import retrofit2 .Converter ;
11
+ import retrofit2 .Retrofit ;
6
12
7
13
import java .io .IOException ;
8
14
import java .lang .annotation .Annotation ;
12
18
import java .util .ArrayList ;
13
19
import java .util .List ;
14
20
15
- import moe .banana .jsonapi2 .ArrayDocument ;
16
- import moe .banana .jsonapi2 .Document ;
17
- import moe .banana .jsonapi2 .ObjectDocument ;
18
- import moe .banana .jsonapi2 .Resource ;
19
- import moe .banana .jsonapi2 .ResourceIdentifier ;
20
- import okhttp3 .MediaType ;
21
- import okhttp3 .RequestBody ;
22
- import okhttp3 .ResponseBody ;
23
- import okio .Buffer ;
24
- import retrofit2 .Converter ;
25
- import retrofit2 .Retrofit ;
26
-
27
21
@ SuppressWarnings ("unchecked" )
28
22
public final class JsonApiConverterFactory extends Converter .Factory {
29
23
You can’t perform that action at this time.
0 commit comments