Merge "Fix wifi connectivity issues." into lmp-preview-dev

This commit is contained in:
Robert Greenwalt
2014-06-11 23:48:25 +00:00
committed by Android (Google) Code Review

View File

@@ -361,7 +361,7 @@ public final class RouteInfo implements Parcelable {
RouteInfo target = (RouteInfo) obj; RouteInfo target = (RouteInfo) obj;
return Objects.equals(mDestination, target.getDestination()) && return Objects.equals(mDestination, target.getDestinationLinkAddress()) &&
Objects.equals(mGateway, target.getGateway()) && Objects.equals(mGateway, target.getGateway()) &&
Objects.equals(mInterface, target.getInterface()); Objects.equals(mInterface, target.getInterface());
} }