Merge "Add missing return statement in setTempFileRootDirectory"

am: d281b1a116

Change-Id: I9bbe241eec6aafdf41153cbc9c410b844ef63e2c
This commit is contained in:
Hall Liu
2018-02-03 00:01:40 +00:00
committed by android-build-merger

View File

@@ -437,6 +437,7 @@ public class MbmsDownloadSession implements AutoCloseable {
int result = downloadService.setTempFileRootDirectory(mSubscriptionId, filePath);
if (result != MbmsErrors.SUCCESS) {
sendErrorToApp(result, null);
return;
}
} catch (RemoteException e) {
mService.set(null);