am 48d2621b: Merge "Fix GAL lookup issue" into froyo

Merge commit '48d2621b453a18a99b4975c013e5edb97e7a5f64' into froyo-plus-aosp

* commit '48d2621b453a18a99b4975c013e5edb97e7a5f64':
  Fix GAL lookup issue
This commit is contained in:
Andy Stadler 2010-05-03 09:31:50 -07:00 committed by Android Git Automerger
commit 8fd23c5b49

View File

@ -94,8 +94,10 @@ public class GalParser extends Parser {
if (tag == Tags.SEARCH_RESULT) {
parseResult(galResult);
} else if (tag == Tags.SEARCH_RANGE) {
// Retrieve value, even if we're not using it for debug logging
String range = getValue();
if (EasSyncService.DEBUG_GAL_SERVICE) {
mService.userLog("GAL result range: " + getValue());
mService.userLog("GAL result range: " + range);
}
} else if (tag == Tags.SEARCH_TOTAL) {
galResult.total = getValueInt();