File tree 2 files changed +8
-5
lines changed
unirest/src/main/java/kong/unirest
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -183,10 +183,6 @@ public void setHttpOnly(boolean httpOnly) {
183
183
this .httpOnly = httpOnly ;
184
184
}
185
185
186
- public String getUrlDecodedValue () {
187
- return getDecode (value );
188
- }
189
-
190
186
private static class Pair {
191
187
final String key ;
192
188
final String value ;
@@ -219,6 +215,13 @@ public String getValue() {
219
215
return value ;
220
216
}
221
217
218
+ /**
219
+ * @return the cookie-value, url-decoded
220
+ */
221
+ public String getUrlDecodedValue () {
222
+ return getDecode (value );
223
+ }
224
+
222
225
/**
223
226
* @return the domain value of the cookie
224
227
*/
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ public interface HttpRequest<R extends HttpRequest> {
181
181
/**
182
182
* sets a download monitor for monitoring the response. this could be used for drawing a progress bar
183
183
* @param monitor a ProgressMonitor
184
- * @return
184
+ * @return this request builder
185
185
*/
186
186
R downloadMonitor (ProgressMonitor monitor );
187
187
You can’t perform that action at this time.
0 commit comments