Merge "Add nullability annotations" am: 539821c978 am: 97350573b9

am: c66eb1e12e

Change-Id: I43088399da1d81556ab903ef1ca716439129f00d
This commit is contained in:
Remi NGUYEN VAN
2019-03-25 06:56:43 -07:00
committed by android-build-merger

View File

@@ -134,7 +134,7 @@ public final class StaticIpConfiguration implements Parcelable {
* route to the gateway as well. This configuration is arguably invalid, but it used to work
* in K and earlier, and other OSes appear to accept it.
*/
public @NonNull List<RouteInfo> getRoutes(String iface) {
public @NonNull List<RouteInfo> getRoutes(@Nullable String iface) {
List<RouteInfo> routes = new ArrayList<RouteInfo>(3);
if (ipAddress != null) {
RouteInfo connectedRoute = new RouteInfo(ipAddress, null, iface);