From 8bcf9b1d502c46ef5941e7ba9da51f68a8f0b190 Mon Sep 17 00:00:00 2001 From: cketti Date: Sat, 4 Apr 2015 00:50:14 +0200 Subject: [PATCH] Remove comments --- k9mail/src/main/java/com/fsck/k9/view/K9WebViewClient.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/k9mail/src/main/java/com/fsck/k9/view/K9WebViewClient.java b/k9mail/src/main/java/com/fsck/k9/view/K9WebViewClient.java index 3b96ab8c4..1022d385b 100644 --- a/k9mail/src/main/java/com/fsck/k9/view/K9WebViewClient.java +++ b/k9mail/src/main/java/com/fsck/k9/view/K9WebViewClient.java @@ -56,13 +56,8 @@ public abstract class K9WebViewClient extends WebViewClient { Context context = webView.getContext(); Uri uri = Uri.parse(url); if (!CID_SCHEME.equals(uri.getScheme())) { - // Replicate Android 4 android.webkit.CallbackProxy.uiOverrideUrlLoading() - // default behavior to open clicked links in external applications. Intent intent = new Intent(Intent.ACTION_VIEW, uri); intent.addCategory(Intent.CATEGORY_BROWSABLE); - // If another application is running a WebView and launches the - // Browser through this Intent, we want to reuse the same window if - // possible. intent.putExtra(Browser.EXTRA_APPLICATION_ID, context.getPackageName()); try { context.startActivity(intent);