summaryrefslogtreecommitdiff
path: root/location/java
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2020-04-09 01:00:16 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2020-04-09 01:00:16 +0000
commite1d4509084acad2ff98c66e453f4bf4df861f930 (patch)
treee43aa5f8876d65529f849add05d6631b34cfe8e8 /location/java
parent56f00e5806061b82d991af2a55aa7c001e56f487 (diff)
parent8481c777c3b439e6469db8ce373495fde9c70fef (diff)
Merge "Fix initialization bug in LocationRequest" into rvc-dev am: a23f461e1b am: 22d8e598c4 am: e6b437581a am: 8481c777c3
Change-Id: Ibc92e4c2bf325c908e37d7a7aa1e74c60b328473
Diffstat (limited to 'location/java')
-rw-r--r--location/java/android/location/LocationRequest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/location/java/android/location/LocationRequest.java b/location/java/android/location/LocationRequest.java
index 4dd1a29d8595..5f0acc8f7647 100644
--- a/location/java/android/location/LocationRequest.java
+++ b/location/java/android/location/LocationRequest.java
@@ -264,8 +264,8 @@ public final class LocationRequest implements Parcelable {
/* numUpdates= */ Integer.MAX_VALUE,
/* smallestDisplacement= */ 0,
/* hideFromAppOps= */ false,
- /* lowPowerMode= */ false,
/* locationSettingsIgnored= */ false,
+ /* lowPowerMode= */ false,
/* workSource= */ null);
}
@@ -282,8 +282,8 @@ public final class LocationRequest implements Parcelable {
src.mNumUpdates,
src.mSmallestDisplacement,
src.mHideFromAppOps,
- src.mLowPowerMode,
src.mLocationSettingsIgnored,
+ src.mLowPowerMode,
src.mWorkSource);
}