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

Commit b7a11238 authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by android-build-merger
Browse files

Merge "Bluetooth: fix comment wording"

am: 6ba7c54a51

Change-Id: I745973b35e5d756072bff1d0958470dc0f55f6ca
parents f05d31ea 9c63d28a
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -253,10 +253,10 @@ public final class AdvertisingSetParameters implements Parcelable {
        /**
         * Set whether the advertisement type should be connectable or
         * non-connectable.
         * Legacy advertisements can be both connectable and scannable. Other
         * advertisements can be connectable only if not scannable.
         * Legacy advertisements must be both connectable and scannable. Nonlegacy
         * advertisements can be only scannable or only connectable.
         * @param connectable Controls whether the advertisment type will be
         * connectable (true) or non-connectable (false).
         * connectable (true) or nonconnectable (false).
         */
        public Builder setConnectable(boolean connectable) {
            this.connectable = connectable;
@@ -264,11 +264,11 @@ public final class AdvertisingSetParameters implements Parcelable {
        }

        /**
         * Set whether the advertisement type should be scannable
         * Legacy advertisements can be both connectable and scannable. Other
         * advertisements can be scannable only if not connectable.
         * Set whether the advertisement type should be scannable.
         * Legacy advertisements must be both connectable and scannable. Nonlegacy
         * advertisements can be only scannable or only connectable.
         * @param scannable Controls whether the advertisment type will be
         * scannable (true) or non-scannable (false).
         * scannable (true) or nonscannable (false).
         */
        public Builder setScannable(boolean scannable) {
            this.scannable = scannable;