Skip to content

Commit

Permalink
Updated AsyncFetcher to to remove checkstyle warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lwj5 committed Jan 7, 2019
1 parent 7dca130 commit 3af8aa6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/ai/preferred/venom/fetcher/AsyncFetcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ public Builder numIoThreads(final int numIoThreads) {
* @param maxConnections the max allowable connections.
* @return this
*/
public Builder setMaxConnections(int maxConnections) {
public Builder setMaxConnections(final int maxConnections) {
this.maxConnections = maxConnections;
return this;
}
Expand All @@ -627,7 +627,7 @@ public Builder setMaxConnections(int maxConnections) {
* @param maxRouteConnections the max allowable connections per route.
* @return this
*/
public Builder setMaxRouteConnections(int maxRouteConnections) {
public Builder setMaxRouteConnections(final int maxRouteConnections) {
this.maxRouteConnections = maxRouteConnections;
return this;
}
Expand All @@ -649,7 +649,7 @@ public Builder proxyProvider(final @NotNull ProxyProvider proxyProvider) {
* @param sslContext SSLContext to be used.
* @return this
*/
public Builder setSslContext(SSLContext sslContext) {
public Builder setSslContext(final SSLContext sslContext) {
this.sslContext = sslContext;
return this;
}
Expand Down Expand Up @@ -730,7 +730,7 @@ public Builder validator(final @NotNull Validator... validators) {
* @param redirectStrategy redirection strategy to be used.
* @return this
*/
public Builder setRedirectStrategy(RedirectStrategy redirectStrategy) {
public Builder setRedirectStrategy(final RedirectStrategy redirectStrategy) {
this.redirectStrategy = redirectStrategy;
return this;
}
Expand Down

0 comments on commit 3af8aa6

Please sign in to comment.