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

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

Merge "Fix requiresCharging false value ignored issue" into nyc-mr2-dev

parents 85016506 e33c3c81
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;
        }