1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Make get cookies static

This commit is contained in:
agarcia 2020-09-23 13:21:15 +02:00 committed by Abel García de Prada
parent 654efea7e5
commit f8904dca9d

View File

@ -136,7 +136,7 @@ public class HttpClient {
return sLogInterceptor;
}
public List<Cookie> getCookiesFromUrl(HttpUrl httpUrl) {
public static List<Cookie> getCookiesFromUrl(HttpUrl httpUrl) {
return sCookieStore.get(httpUrl.host());
}