From ecf8d45ddec587be3ddf62858e443dbb6bc2953b Mon Sep 17 00:00:00 2001 From: Lorenzo Pichilli Date: Mon, 11 May 2020 15:10:17 +0200 Subject: [PATCH] removed Log.d --- .../pichillilorenzo/flutter_inappwebview/MyCookieManager.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/MyCookieManager.java b/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/MyCookieManager.java index db8f37dd..02603bdc 100755 --- a/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/MyCookieManager.java +++ b/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/MyCookieManager.java @@ -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() { @Override