Skip to content

Commit 7b24eeb

Browse files
committed
Fix name typo
1 parent 915f2a5 commit 7b24eeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/taboola/rest/api/internal/config/CommunicationConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class CommunicationConfig {
3131
public CommunicationConfig(String baseUrl, Long connectionTimeoutMillis, Long readTimeoutMillis,
3232
Long writeTimeoutMillis, Integer maxIdleConnections, Long keepAliveDurationMillis,
3333
Collection<RequestHeader> headers, boolean debug, ExceptionFactory exceptionFactory,
34-
ObjectMapper objectMapper, ResponseFactories responseFactory) {
34+
ObjectMapper objectMapper, ResponseFactories responseFactories) {
3535
this.baseUrl = baseUrl;
3636
this.connectionTimeoutMillis = connectionTimeoutMillis;
3737
this.readTimeoutMillis = readTimeoutMillis;
@@ -42,7 +42,7 @@ public CommunicationConfig(String baseUrl, Long connectionTimeoutMillis, Long re
4242
this.debug = debug;
4343
this.exceptionFactory = exceptionFactory;
4444
this.objectMapper = objectMapper;
45-
this.responseFactories = responseFactory;
45+
this.responseFactories = responseFactories;
4646
}
4747

4848
public String getBaseUrl() {

0 commit comments

Comments
 (0)