Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6dcc8d30 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "WifiP2pManager: Add annotation Nullable for API: onDeviceInfoAvailable"

parents 7f595dc7 a0e52a2e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30556,7 +30556,7 @@ package android.net.wifi.p2p {
  }
  public static interface WifiP2pManager.DeviceInfoListener {
    method public void onDeviceInfoAvailable(android.net.wifi.p2p.WifiP2pDevice);
    method public void onDeviceInfoAvailable(@Nullable android.net.wifi.p2p.WifiP2pDevice);
  }
  public static interface WifiP2pManager.DiscoveryStateListener {
+1 −1
Original line number Diff line number Diff line
@@ -816,7 +816,7 @@ public class WifiP2pManager {
         * The requested {@link android.net.wifi.p2p.WifiP2pDevice} is available.
         * @param wifiP2pDevice Wi-Fi p2p {@link android.net.wifi.p2p.WifiP2pDevice}
         */
        void onDeviceInfoAvailable(WifiP2pDevice wifiP2pDevice);
        void onDeviceInfoAvailable(@Nullable WifiP2pDevice wifiP2pDevice);
    }

    /**