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

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

Merge "Add @IntDef to WifiP2pConfig#getGroupOwnerBand()"

parents f8957fb1 670e562a
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -66,12 +66,20 @@ public class WifiP2pConfig implements Parcelable {
    /** @hide */
    public String passphrase = "";

    /** Get the required band for the group owner. */
    /**
     * Get the required band for the group owner.
     * The result will be one of the following:
     * {@link #GROUP_OWNER_BAND_AUTO},
     * {@link #GROUP_OWNER_BAND_2GHZ},
     * {@link #GROUP_OWNER_BAND_5GHZ}
     */
    @GroupOperatingBandType
    public int getGroupOwnerBand() {
        return groupOwnerBand;
    }

    /** @hide */
    @GroupOperatingBandType
    public int groupOwnerBand = GROUP_OWNER_BAND_AUTO;

    /** @hide */