Re-enable delete_aiding_data for user build
Allow delete aiding data request from HAL API for user build. Change-Id: Icfafe07b4217e482e4ca402b9a1da5ca70e1ff01 CRs-fixed: 2034718
This commit is contained in:
parent
6cf01fac92
commit
c553418ce7
1 changed files with 1 additions and 6 deletions
|
@ -808,12 +808,7 @@ GnssAdapter::gnssDeleteAidingDataCommand(GnssAidingData& data)
|
|||
mData(data) {}
|
||||
inline virtual void proc() const {
|
||||
LocationError err = LOCATION_ERROR_SUCCESS;
|
||||
#ifdef TARGET_BUILD_VARIANT_USER
|
||||
err = LOCATION_ERROR_NOT_SUPPORTED;
|
||||
#endif
|
||||
if (LOCATION_ERROR_SUCCESS == err) {
|
||||
err = mApi.deleteAidingData(mData);
|
||||
}
|
||||
err = mApi.deleteAidingData(mData);
|
||||
mAdapter.reportResponse(err, mSessionId);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue