File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed
src/main/java/com/contentstack/sdk Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 145
145
<version >${loggin.version} </version >
146
146
<scope >compile</scope >
147
147
</dependency >
148
- <dependency >
149
- <groupId >com.squareup.retrofit2</groupId >
150
- <artifactId >converter-jackson</artifactId >
151
- <version >2.9.0</version >
152
- <scope >compile</scope >
153
- </dependency >
154
148
155
149
<dependency >
156
150
<groupId >org.projectlombok</groupId >
Original file line number Diff line number Diff line change 5
5
import org .jetbrains .annotations .NotNull ;
6
6
import org .json .JSONObject ;
7
7
import retrofit2 .Retrofit ;
8
- import retrofit2 .converter .jackson .JacksonConverterFactory ;
9
8
10
9
import java .net .Proxy ;
11
10
import java .text .DateFormat ;
@@ -76,7 +75,6 @@ private void client(String endpoint) {
76
75
77
76
Retrofit retrofit = new Retrofit .Builder ().baseUrl (endpoint )
78
77
.client (client )
79
- .addConverterFactory (JacksonConverterFactory .create ())
80
78
.build ();
81
79
82
80
this .service = retrofit .create (APIService .class );
You can’t perform that action at this time.
0 commit comments