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

Commit 0497eecf authored by Shreyas Basarge's avatar Shreyas Basarge Committed by Android (Google) Code Review
Browse files

Merge "Fix requiresCharging false value ignored issue"

parents bf697fda 3a147230
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -351,7 +351,7 @@ public class SyncRequest implements Parcelable {
         * @param requiresCharging true if sync requires the phone to be plugged in. Default false.
         */
        public Builder setRequiresCharging(boolean requiresCharging) {
            mRequiresCharging = true;
            mRequiresCharging = requiresCharging;
            return this;
        }