We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 058f844 commit 0e805dbCopy full SHA for 0e805db
client/src/main/java/org/asynchttpclient/Request.java
@@ -23,7 +23,6 @@
23
import java.net.InetAddress;
24
import java.nio.ByteBuffer;
25
import java.nio.charset.Charset;
26
-import java.util.Collection;
27
import java.util.List;
28
29
import org.asynchttpclient.channel.ChannelPoolPartitioning;
@@ -74,11 +73,11 @@ public interface Request {
74
73
HttpHeaders getHeaders();
75
76
/**
77
- * Return Coookie.
+ * Return cookies.
78
*
79
* @return an unmodifiable Collection of Cookies
80
*/
81
- Collection<Cookie> getCookies();
+ List<Cookie> getCookies();
82
83
84
* Return the current request's body as a byte array
0 commit comments