1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-17 08:42:25 +03:00

Javadoc fix for immutable Interceptors in OkHttpClient

This commit is contained in:
austynmahoney
2016-01-04 11:33:40 -07:00
parent 20653ad0e1
commit 0ea60aeaa3

View File

@@ -276,7 +276,7 @@ public final class OkHttpClient implements Cloneable, Call.Factory {
}
/**
* Returns a modifiable list of interceptors that observe the full span of each call: from before
* Returns an immutable list of interceptors that observe the full span of each call: from before
* the connection is established (if any) until after the response source is selected (either the
* origin server, cache, or both).
*/
@@ -285,7 +285,7 @@ public final class OkHttpClient implements Cloneable, Call.Factory {
}
/**
* Returns a modifiable list of interceptors that observe a single network request and response.
* Returns an immutable list of interceptors that observe a single network request and response.
* These interceptors must call {@link Interceptor.Chain#proceed} exactly once: it is an error for
* a network interceptor to short-circuit or repeat a network request.
*/