From b5622dad6561482ddd331bd826689634b5fa2c4f Mon Sep 17 00:00:00 2001 From: John Reck Date: Fri, 17 Aug 2012 13:04:24 -0700 Subject: [PATCH] Remove checkThread() from findAddress Bug: 6811978 This doesn't need checked thread safety - static util methods should be thread safe. Change-Id: Ib652d74ced66e3fa332464106a38522cd941a4cd --- core/java/android/webkit/WebView.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index a5420bbe7ba7a..436762d66caa7 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -1403,7 +1403,6 @@ public class WebView extends AbsoluteLayout * @return the address, or if no address is found, null */ public static String findAddress(String addr) { - checkThread(); return getFactory().getStatics().findAddress(addr); }