From 7ceeabe0daf6eaf8091f65e639496d24346e9425 Mon Sep 17 00:00:00 2001 From: Chiachang Wang Date: Thu, 15 Apr 2021 16:04:00 +0800 Subject: [PATCH] Remove hidden method link in public addRoute API The build will complain after moving connectivity framework code outside framework because the hidden methods/members accesses are not allowed anymore. Link to a hidden class will not work since it's not visible in public. Bug: 182859030 Test: make docs Change-Id: I5726f80be7cf92b648ce851d9601d5f58bc2b647 --- framework/src/android/net/LinkProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/src/android/net/LinkProperties.java b/framework/src/android/net/LinkProperties.java index e41ed72b25..99f48b49c6 100644 --- a/framework/src/android/net/LinkProperties.java +++ b/framework/src/android/net/LinkProperties.java @@ -686,8 +686,8 @@ public final class LinkProperties implements Parcelable { } /** - * Adds a {@link RouteInfo} to this {@code LinkProperties}, if a {@link RouteInfo} - * with the same {@link RouteInfo.RouteKey} with different properties + * Adds a {@link RouteInfo} to this {@code LinkProperties}. If there is a {@link RouteInfo} + * with the same destination, gateway and interface with different properties * (e.g., different MTU), it will be updated. If the {@link RouteInfo} had an * interface name set and that differs from the interface set for this * {@code LinkProperties} an {@link IllegalArgumentException} will be thrown.