mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 13:45:35 +03:00
linewrap
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
7546b21a5b
commit
b3312aa975
3 changed files with 8 additions and 4 deletions
|
@ -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,
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue