From 1ddbe82a998b59bdfec09eab62f28b232fb4e425 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Thu, 14 Feb 2019 18:04:04 +0800 Subject: [PATCH] p2p: revise API Javadoc Revise API Javadoc according to API council's comments. Bug: 123661241 Test: build - make docs Change-Id: I258ecd1c78e95d0847d86965ec306dfd2bdafac1 --- wifi/java/android/net/wifi/p2p/WifiP2pGroup.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wifi/java/android/net/wifi/p2p/WifiP2pGroup.java b/wifi/java/android/net/wifi/p2p/WifiP2pGroup.java index 72e57a16712b2..8a1b21c990c73 100644 --- a/wifi/java/android/net/wifi/p2p/WifiP2pGroup.java +++ b/wifi/java/android/net/wifi/p2p/WifiP2pGroup.java @@ -67,7 +67,7 @@ public class WifiP2pGroup implements Parcelable { /** The network id in the wpa_supplicant */ private int mNetId; - /** The frequency used by this group */ + /** The frequency (in MHz) used by this group */ private int mFrequency; /** P2P group started string pattern */ @@ -273,7 +273,7 @@ public class WifiP2pGroup implements Parcelable { this.mNetId = netId; } - /** Get the operating frequency of the p2p group */ + /** Get the operating frequency (in MHz) of the p2p group */ public int getFrequency() { return mFrequency; }