diff options
author | Junyu Lai <junyulai@google.com> | 2020-03-20 11:03:47 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-03-20 11:03:47 +0000 |
commit | 686aa7fec58a02aa5dfaa2e0c86900d743f9fb84 (patch) | |
tree | e22f86bacc2327a6934d0cd716dc96b1206aac8a | |
parent | 4e4f3cc8924324f9d6354edab5eee5d4f79997a7 (diff) | |
parent | 8c8ae019b19fbecf1692ba8a516f0d27137eb8a3 (diff) |
Merge "Adjust code for API council feedback" into rvc-dev
-rw-r--r-- | apishim/30/com/android/networkstack/apishim/NetworkInformationShimImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apishim/30/com/android/networkstack/apishim/NetworkInformationShimImpl.java b/apishim/30/com/android/networkstack/apishim/NetworkInformationShimImpl.java index 03b28cd..42a11de 100644 --- a/apishim/30/com/android/networkstack/apishim/NetworkInformationShimImpl.java +++ b/apishim/30/com/android/networkstack/apishim/NetworkInformationShimImpl.java @@ -75,7 +75,7 @@ public class NetworkInformationShimImpl extends @Override public String getSsid(@Nullable NetworkCapabilities nc) { if (nc == null) return null; - return nc.getSSID(); + return nc.getSsid(); } @NonNull |