Merge "Move SDK Check for getNeighboringCellInfo"

am: 9ec58ff433

Change-Id: Id9975df8d6531103a9c1fa2d77b42699f07b823c
This commit is contained in:
Nathan Harold
2018-10-16 10:15:13 -07:00
committed by android-build-merger
2 changed files with 2 additions and 3 deletions

View File

@@ -1593,8 +1593,7 @@ public class TelephonyManager {
ITelephony telephony = getITelephony();
if (telephony == null)
return null;
return telephony.getNeighboringCellInfo(mContext.getOpPackageName(),
mContext.getApplicationInfo().targetSdkVersion);
return telephony.getNeighboringCellInfo(mContext.getOpPackageName());
} catch (RemoteException ex) {
return null;
} catch (NullPointerException ex) {

View File

@@ -280,7 +280,7 @@ interface ITelephony {
/**
* Returns the neighboring cell information of the device.
*/
List<NeighboringCellInfo> getNeighboringCellInfo(String callingPkg, int targetSdk);
List<NeighboringCellInfo> getNeighboringCellInfo(String callingPkg);
int getCallState();