removed Log.d
This commit is contained in:
parent
b6b1e0e290
commit
ecf8d45dde
@ -45,8 +45,6 @@ public class MyCookieManager implements MethodChannel.MethodCallHandler {
|
|||||||
String path = (String) call.argument("path");
|
String path = (String) call.argument("path");
|
||||||
String expiresDateString = (String) call.argument("expiresDate");
|
String expiresDateString = (String) call.argument("expiresDate");
|
||||||
Long expiresDate = (expiresDateString != null ? new Long(expiresDateString) : null);
|
Long expiresDate = (expiresDateString != null ? new Long(expiresDateString) : null);
|
||||||
Log.d(LOG_TAG, expiresDateString + "");
|
|
||||||
Log.d(LOG_TAG, expiresDate + "");
|
|
||||||
Integer maxAge = (Integer) call.argument("maxAge");
|
Integer maxAge = (Integer) call.argument("maxAge");
|
||||||
Boolean isSecure = (Boolean) call.argument("isSecure");
|
Boolean isSecure = (Boolean) call.argument("isSecure");
|
||||||
MyCookieManager.setCookie(url, name, value, domain, path, expiresDate, maxAge, isSecure, result);
|
MyCookieManager.setCookie(url, name, value, domain, path, expiresDate, maxAge, isSecure, result);
|
||||||
@ -103,8 +101,6 @@ public class MyCookieManager implements MethodChannel.MethodCallHandler {
|
|||||||
|
|
||||||
cookieValue += ";";
|
cookieValue += ";";
|
||||||
|
|
||||||
Log.d(LOG_TAG, cookieValue + "");
|
|
||||||
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
||||||
cookieManager.setCookie(url, cookieValue, new ValueCallback<Boolean>() {
|
cookieManager.setCookie(url, cookieValue, new ValueCallback<Boolean>() {
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user