Fix GAL lookup issue

Bug: 2646410
Change-Id: I52b0ddf4b7c6b56b3ad060d8d42a6080efa3662b
This commit is contained in:
Marc Blank 2010-05-02 13:49:55 -07:00
parent 14812a50a8
commit cb7ac76f0b

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