diff options
| author | Dave Bort <dbort@android.com> | 2009-04-13 15:07:51 -0700 |
|---|---|---|
| committer | Dave Bort <dbort@android.com> | 2009-04-13 15:10:38 -0700 |
| commit | 42bc2ff5d2e3a10ab6c1fb1e716a124f2b446dbc (patch) | |
| tree | b2187c691dae17d3d89f88159611395a8c9afa47 /core/java/android/webkit/URLUtil.java | |
| parent | 61805637e52b29f661c34c4cdd9f31b182ee1698 (diff) | |
Remove references to android.util.Config
The semantics of Config.DEBUG will be changing soon, and all other
Config.* fields will become deprecated/hidden.
BUG=1780938
Diffstat (limited to 'core/java/android/webkit/URLUtil.java')
| -rw-r--r-- | core/java/android/webkit/URLUtil.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/java/android/webkit/URLUtil.java b/core/java/android/webkit/URLUtil.java index 0e8144edd60a..d6ac3e9093bf 100644 --- a/core/java/android/webkit/URLUtil.java +++ b/core/java/android/webkit/URLUtil.java @@ -23,7 +23,6 @@ import java.util.regex.Pattern; import android.net.Uri; import android.net.ParseException; import android.net.WebAddress; -import android.util.Config; import android.util.Log; public final class URLUtil { @@ -62,7 +61,7 @@ public final class URLUtil { webAddress = new WebAddress(inUrl); } catch (ParseException ex) { - if (Config.LOGV) { + if (WebView.LOGV_ENABLED) { Log.v(LOGTAG, "smartUrlFilter: failed to parse url = " + inUrl); } return retVal; |
