|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package org.tasks;
|
|
|
|
|
|
|
|
|
|
import com.google.api.client.http.HttpRequest;
|
|
|
|
|
import com.google.api.client.http.HttpResponse;
|
|
|
|
|
import javax.inject.Inject;
|
|
|
|
|
import okhttp3.OkHttpClient;
|
|
|
|
|
|
|
|
|
@ -10,7 +11,11 @@ public class DebugNetworkInterceptor {
|
|
|
|
|
|
|
|
|
|
public void add(OkHttpClient.Builder builder) {}
|
|
|
|
|
|
|
|
|
|
public <T> T execute(HttpRequest request, Class<T> responseClass) {
|
|
|
|
|
public <T> T execute(HttpRequest httpRequest, Class<T> responseClass) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public <T> T report(HttpResponse httpResponse, Class<T> responseClass, long start, long finish) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|