Skip to content

Commit

Permalink
Expose RequestBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
echsylon committed Sep 4, 2017
1 parent a6e3c9a commit 5902c5f
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* by the super class as a protected field, when implementing {@code enqueue()}
* in order to make use of any cache configuration made by the caller.
*/
abstract class RequestBuilder<T> extends OkHttpNetworkClient.CachedRequestBuilder<RequestBuilder<T>> {
public abstract class RequestBuilder<T> extends OkHttpNetworkClient.CachedRequestBuilder<RequestBuilder<T>> {

/**
* INTERNAL USE ONLY!
Expand Down Expand Up @@ -64,14 +64,14 @@ private static final class Response<T> {
private final Type typeOfResult;
private final CallCounter callCounter;

RequestBuilder(final int cost,
final CallCounter callCounter,
final String key,
final byte[] secret,
final String baseUrl,
final String method,
final String path,
final Type typeOfResult) {
public RequestBuilder(final int cost,
final CallCounter callCounter,
final String key,
final byte[] secret,
final String baseUrl,
final String method,
final String path,
final Type typeOfResult) {

this.cost = cost;
this.callCounter = callCounter;
Expand Down

0 comments on commit 5902c5f

Please sign in to comment.