diff --git a/wifi/java/android/net/wifi/nan/WifiNanDiscoveryBaseSession.java b/wifi/java/android/net/wifi/nan/WifiNanDiscoveryBaseSession.java index 50951f6d7e20b..a2ed497b06955 100644 --- a/wifi/java/android/net/wifi/nan/WifiNanDiscoveryBaseSession.java +++ b/wifi/java/android/net/wifi/nan/WifiNanDiscoveryBaseSession.java @@ -31,8 +31,8 @@ import java.lang.ref.WeakReference; * {@link WifiNanPublishDiscoverySession} and {@link WifiNanSubscribeDiscoverySession}. This * class provides functionality common to both publish and subscribe discovery sessions: *
* The peer will get a callback indicating a message was received using * {@link WifiNanDiscoverySessionCallback#onMessageReceived(int, byte[])}. - * Equivalent to {@link #sendMessage(int, byte[], int, int)} with a {@code retryCount} of + * Equivalent to {@link #sendMessage(int, int, byte[], int)} with a {@code retryCount} of * 0. * * @param peerId The peer's ID for the message. Must be a result of an * {@link WifiNanDiscoverySessionCallback#onServiceDiscovered(int, byte[], byte[])} * or * {@link WifiNanDiscoverySessionCallback#onMessageReceived(int, byte[])} events. - * @param message The message to be transmitted. * @param messageId An arbitrary integer used by the caller to identify the message. The same * integer ID will be returned in the callbacks indicating message send success or * failure. The {@code messageId} is not used internally by the NAN service - it * can be arbitrary and non-unique. + * @param message The message to be transmitted. */ - public void sendMessage(int peerId, @Nullable byte[] message, int messageId) { - sendMessage(peerId, message, messageId, 0); + public void sendMessage(int peerId, int messageId, @Nullable byte[] message) { + sendMessage(peerId, messageId, message, 0); } /** diff --git a/wifi/java/android/net/wifi/nan/WifiNanManager.java b/wifi/java/android/net/wifi/nan/WifiNanManager.java index 2ad38dec9939e..6a86e7b2d2fa4 100644 --- a/wifi/java/android/net/wifi/nan/WifiNanManager.java +++ b/wifi/java/android/net/wifi/nan/WifiNanManager.java @@ -97,7 +97,7 @@ import java.util.Arrays; * the session {@link WifiNanPublishDiscoverySession#updatePublish(PublishConfig)} and * {@link WifiNanSubscribeDiscoverySession#updateSubscribe(SubscribeConfig)}. Sessions can also * be used to send messages using the - * {@link WifiNanDiscoveryBaseSession#sendMessage(int, byte[], int)} APIs. When an application + * {@link WifiNanDiscoveryBaseSession#sendMessage(int, int, byte[])} APIs. When an application * is finished with a discovery session it must terminate it using the * {@link WifiNanDiscoveryBaseSession#destroy()} API. *