Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/org/adblockplus/libadblockplus/WebRequest.java

Issue 5697499218051072: Usage of new API, cleanups (reduced) (Closed)
Patch Set: Even more review issues fixed. Created April 28, 2014, 10:18 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/org/adblockplus/libadblockplus/UpdaterCallback.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/org/adblockplus/libadblockplus/WebRequest.java
diff --git a/src/org/adblockplus/libadblockplus/WebRequest.java b/src/org/adblockplus/libadblockplus/WebRequest.java
index 2158a785b332dc18920ba24d4362837bb7de6641..c738fe83999d773cf8245d7cba54c07f06015965 100644
--- a/src/org/adblockplus/libadblockplus/WebRequest.java
+++ b/src/org/adblockplus/libadblockplus/WebRequest.java
@@ -19,7 +19,6 @@ package org.adblockplus.libadblockplus;
import java.util.List;
-import com.github.rjeschke.neetutils.collections.Tuple;
import com.github.rjeschke.neetutils.dispose.Disposable;
import com.github.rjeschke.neetutils.dispose.Disposer;
@@ -40,7 +39,7 @@ public abstract class WebRequest implements Disposable
this.disposer = new Disposer(this, new DisposeWrapper(this.ptr));
}
- public abstract ServerResponse httpGET(String url, List<Tuple<String, String>> headers);
+ public abstract ServerResponse httpGET(String url, List<HeaderEntry> headers);
@Override
public void dispose()
« no previous file with comments | « src/org/adblockplus/libadblockplus/UpdaterCallback.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld