Merge "WifiWatchdog: handle exception from ArpPeer"

This commit is contained in:
Irfan Sheriff
2012-08-22 10:57:49 -07:00
committed by android code review

View File

@@ -881,6 +881,9 @@ public class WifiWatchdogStateMachine extends StateMachine {
//test to avoid any wifi connectivity issues
loge("ARP test initiation failure: " + se);
success = true;
} catch (IllegalArgumentException ae) {
log("ARP test initiation failure: " + ae);
success = true;
}
return success;