summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunyu Lai <junyulai@google.com>2020-03-20 11:03:05 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-03-20 11:03:05 +0000
commit4e4f3cc8924324f9d6354edab5eee5d4f79997a7 (patch)
tree6633b050270431dbb10ae3e9a725aa592696e926
parent77c211416b441621c73c08467c0647c3cfe5eb60 (diff)
parentae1d786958ee70080e990f33421580ea771ad3a6 (diff)
Merge "Give netId a getter as requested by the API council." into rvc-dev
-rw-r--r--apishim/30/com/android/networkstack/apishim/NetworkShimImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/apishim/30/com/android/networkstack/apishim/NetworkShimImpl.java b/apishim/30/com/android/networkstack/apishim/NetworkShimImpl.java
index 305b8a5..8c37852 100644
--- a/apishim/30/com/android/networkstack/apishim/NetworkShimImpl.java
+++ b/apishim/30/com/android/networkstack/apishim/NetworkShimImpl.java
@@ -44,6 +44,6 @@ public class NetworkShimImpl extends com.android.networkstack.apishim.api29.Netw
*/
@Override
public int getNetId() {
- return mNetwork.netId;
+ return mNetwork.getNetId();
}
}