Commit ecf8d45d authored by Lorenzo Pichilli's avatar Lorenzo Pichilli

removed Log.d

parent b6b1e0e2
......@@ -45,8 +45,6 @@ public class MyCookieManager implements MethodChannel.MethodCallHandler {
String path = (String) call.argument("path");
String expiresDateString = (String) call.argument("expiresDate");
Long expiresDate = (expiresDateString != null ? new Long(expiresDateString) : null);
Log.d(LOG_TAG, expiresDateString + "");
Log.d(LOG_TAG, expiresDate + "");
Integer maxAge = (Integer) call.argument("maxAge");
Boolean isSecure = (Boolean) call.argument("isSecure");
MyCookieManager.setCookie(url, name, value, domain, path, expiresDate, maxAge, isSecure, result);
......@@ -103,8 +101,6 @@ public class MyCookieManager implements MethodChannel.MethodCallHandler {
cookieValue += ";";
Log.d(LOG_TAG, cookieValue + "");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
cookieManager.setCookie(url, cookieValue, new ValueCallback<Boolean>() {
@Override
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment