am 3ed0674a: am 8fd23c5b: am 48d2621b: Merge "Fix GAL lookup issue" into froyo

This commit is contained in:
Andy Stadler 2010-05-03 09:36:30 -07:00 committed by Android Git Automerger
commit 2c4e1a0c9c

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();