|
@@ -15,11 +15,12 @@
|
|
|
*/
|
|
|
package com.fq.threelib.okhttp3;
|
|
|
|
|
|
+import android.support.annotation.Nullable;
|
|
|
+
|
|
|
import java.io.Closeable;
|
|
|
import java.io.IOException;
|
|
|
import java.util.Collections;
|
|
|
import java.util.List;
|
|
|
-import javax.annotation.Nullable;
|
|
|
import com.fq.threelib.okhttp3.internal.http.HttpHeaders;
|
|
|
import com.fq.threelib.okio.Buffer;
|
|
|
import com.fq.threelib.okio.BufferedSource;
|
|
@@ -45,7 +46,8 @@ public final class Response implements Closeable {
|
|
|
final Protocol protocol;
|
|
|
final int code;
|
|
|
final String message;
|
|
|
- final @Nullable Handshake handshake;
|
|
|
+ final @Nullable
|
|
|
+ Handshake handshake;
|
|
|
final Headers headers;
|
|
|
final @Nullable ResponseBody body;
|
|
|
final @Nullable Response networkResponse;
|