Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2019-05-22 10:56:59 +02:00
parent 7546b21a5b
commit b3312aa975
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7
3 changed files with 8 additions and 4 deletions

View file

@ -34,7 +34,8 @@ import java.io.IOException;
public interface ClientFactory {
OwnCloudClient create(Account account)
throws OperationCanceledException, AuthenticatorException, IOException, AccountUtils.AccountNotFoundException;
throws OperationCanceledException, AuthenticatorException, IOException,
AccountUtils.AccountNotFoundException;
OwnCloudClient create(Account account, Activity currentActivity)
throws OperationCanceledException, AuthenticatorException, IOException,

View file

@ -43,13 +43,15 @@ class ClientFactoryImpl implements ClientFactory {
@Override
public OwnCloudClient create(Account account)
throws OperationCanceledException, AuthenticatorException, IOException, AccountUtils.AccountNotFoundException {
throws OperationCanceledException, AuthenticatorException, IOException,
AccountUtils.AccountNotFoundException {
return OwnCloudClientFactory.createOwnCloudClient(account, context);
}
@Override
public OwnCloudClient create(Account account, Activity currentActivity)
throws OperationCanceledException, AuthenticatorException, IOException, AccountUtils.AccountNotFoundException {
throws OperationCanceledException, AuthenticatorException, IOException,
AccountUtils.AccountNotFoundException {
return OwnCloudClientFactory.createOwnCloudClient(account, context, currentActivity);
}

View file

@ -781,7 +781,8 @@ public class FileOperationsHelper {
intent.setDataAndType(uri, file.getMimeType());
fileActivity.startActivityForResult(Intent.createChooser(intent,
fileActivity.getString(R.string.set_as)), 200);
fileActivity.getString(R.string.set_as)),
200);
intent.setDataAndType(uri, file.getMimeType());
} catch (ActivityNotFoundException exception) {