summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSatish Sampath <satish@android.com>2009-05-27 17:37:31 +0100
committerSatish Sampath <satish@android.com>2009-05-27 17:37:31 +0100
commit45b55b2863a04640aa4cdf6bef3d674beaea5a82 (patch)
tree5a892efd85ffd39136a73ef415bbe7d1ff3a1109
parentc4f82fd05529d0fde818fe7b2a3e3d649e5b82a1 (diff)
downloadWebSearchProvider-45b55b2863a04640aa4cdf6bef3d674beaea5a82.tar.gz
Removes a log message printing out the suggest URI.
This was being done on each keystroke/query which was unnecessary, and it was also causing a crash when a search engine in the list only supported searches and not suggest.
-rw-r--r--src/com/android/websearch/SuggestionProvider.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/com/android/websearch/SuggestionProvider.java b/src/com/android/websearch/SuggestionProvider.java
index 1c45472..cfbb133 100644
--- a/src/com/android/websearch/SuggestionProvider.java
+++ b/src/com/android/websearch/SuggestionProvider.java
@@ -138,7 +138,6 @@ public class SuggestionProvider extends ContentProvider {
}
String suggestUri = engine.getSuggestUriForQuery(query);
- Log.i(LOG_TAG, suggestUri);
if (TextUtils.isEmpty(suggestUri)) {
// No suggest URI available for this engine
return makeEmptyCursor();