Skip to content

Commit b118743

Browse files
committed
revoked json.java file changes
1 parent 242c6eb commit b118743

File tree

3 files changed

+288
-395
lines changed

3 files changed

+288
-395
lines changed

src/main/java/sendinblue/ApiClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class ApiClient {
7171
private KeyManager[] keyManagers;
7272

7373
private OkHttpClient httpClient;
74-
private JSON json;
74+
private Json json;
7575

7676
private HttpLoggingInterceptor loggingInterceptor;
7777

@@ -84,7 +84,7 @@ public ApiClient() {
8484

8585
verifyingSsl = true;
8686

87-
json = new JSON();
87+
json = new Json();
8888

8989
// Set default User-Agent.
9090
setUserAgent("Swagger-Codegen/6.0.0/java");
@@ -142,7 +142,7 @@ public ApiClient setHttpClient(OkHttpClient httpClient) {
142142
*
143143
* @return JSON object
144144
*/
145-
public JSON getJSON() {
145+
public Json getJSON() {
146146
return json;
147147
}
148148

@@ -152,7 +152,7 @@ public JSON getJSON() {
152152
* @param json JSON object
153153
* @return Api client
154154
*/
155-
public ApiClient setJSON(JSON json) {
155+
public ApiClient setJSON(Json json) {
156156
this.json = json;
157157
return this;
158158
}

0 commit comments

Comments
 (0)