From 0ea60aeaa3bd0200828748ce8c65fa70bc81c39b Mon Sep 17 00:00:00 2001 From: austynmahoney Date: Mon, 4 Jan 2016 11:33:40 -0700 Subject: [PATCH] Javadoc fix for immutable Interceptors in OkHttpClient --- okhttp/src/main/java/okhttp3/OkHttpClient.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/okhttp/src/main/java/okhttp3/OkHttpClient.java b/okhttp/src/main/java/okhttp3/OkHttpClient.java index 2d267ecae..3d7470948 100644 --- a/okhttp/src/main/java/okhttp3/OkHttpClient.java +++ b/okhttp/src/main/java/okhttp3/OkHttpClient.java @@ -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. */