Merge "Remove usage of hidden .netId in IpConnectivityLog"

This commit is contained in:
Treehugger Robot
2021-01-18 06:36:02 +00:00
committed by Gerrit Code Review

View File

@@ -137,7 +137,7 @@ public class IpConnectivityLog {
* @return true if the event was successfully logged.
*/
public boolean log(@NonNull Network network, @NonNull int[] transports, @NonNull Event data) {
return log(network.netId, transports, data);
return log(network.getNetId(), transports, data);
}
/**