Fix tests after stub change

This commit is contained in:
Tony Torralba
2021-12-21 13:32:21 +01:00
parent 6f06be9419
commit df95317a58
2 changed files with 4 additions and 6 deletions

View File

@@ -85,7 +85,7 @@ public class Safe extends ContentProvider {
@Override
public AssetFileDescriptor openTypedAssetFile(Uri uri, String mimeTypeFilter, Bundle opts,
CancellationSignal signal) throws RemoteException, FileNotFoundException {
CancellationSignal signal) {
sink(uri);
sink(mimeTypeFilter);
sink(opts.get("some_key"));
@@ -94,8 +94,7 @@ public class Safe extends ContentProvider {
}
@Override
public AssetFileDescriptor openTypedAssetFile(Uri uri, String mimeTypeFilter, Bundle opts)
throws FileNotFoundException {
public AssetFileDescriptor openTypedAssetFile(Uri uri, String mimeTypeFilter, Bundle opts) {
sink(uri);
sink(mimeTypeFilter);
sink(opts.get("some_key"));