Skip to content

Commit

Permalink
Revert Call to a protected class instead of private
Browse files Browse the repository at this point in the history
  • Loading branch information
peknudsen committed Jun 4, 2015
1 parent 8072cc8 commit bd3e10d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion okhttp/src/main/java/com/squareup/okhttp/Call.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class Call {
Request originalRequest;
HttpEngine engine;

Call(OkHttpClient client, Request originalRequest) {
protected Call(OkHttpClient client, Request originalRequest) {
// Copy the client. Otherwise changes (socket factory, redirect policy,
// etc.) may incorrectly be reflected in the request when it is executed.
this.client = client.copyWithDefaults();
Expand Down

0 comments on commit bd3e10d

Please sign in to comment.