mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 17:46:37 +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 {
|
public interface ClientFactory {
|
||||||
|
|
||||||
OwnCloudClient create(Account account)
|
OwnCloudClient create(Account account)
|
||||||
throws OperationCanceledException, AuthenticatorException, IOException, AccountUtils.AccountNotFoundException;
|
throws OperationCanceledException, AuthenticatorException, IOException,
|
||||||
|
AccountUtils.AccountNotFoundException;
|
||||||
|
|
||||||
OwnCloudClient create(Account account, Activity currentActivity)
|
OwnCloudClient create(Account account, Activity currentActivity)
|
||||||
throws OperationCanceledException, AuthenticatorException, IOException,
|
throws OperationCanceledException, AuthenticatorException, IOException,
|
||||||
|
|
|
@ -43,13 +43,15 @@ class ClientFactoryImpl implements ClientFactory {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public OwnCloudClient create(Account account)
|
public OwnCloudClient create(Account account)
|
||||||
throws OperationCanceledException, AuthenticatorException, IOException, AccountUtils.AccountNotFoundException {
|
throws OperationCanceledException, AuthenticatorException, IOException,
|
||||||
|
AccountUtils.AccountNotFoundException {
|
||||||
return OwnCloudClientFactory.createOwnCloudClient(account, context);
|
return OwnCloudClientFactory.createOwnCloudClient(account, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public OwnCloudClient create(Account account, Activity currentActivity)
|
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);
|
return OwnCloudClientFactory.createOwnCloudClient(account, context, currentActivity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -781,7 +781,8 @@ public class FileOperationsHelper {
|
||||||
|
|
||||||
intent.setDataAndType(uri, file.getMimeType());
|
intent.setDataAndType(uri, file.getMimeType());
|
||||||
fileActivity.startActivityForResult(Intent.createChooser(intent,
|
fileActivity.startActivityForResult(Intent.createChooser(intent,
|
||||||
fileActivity.getString(R.string.set_as)), 200);
|
fileActivity.getString(R.string.set_as)),
|
||||||
|
200);
|
||||||
|
|
||||||
intent.setDataAndType(uri, file.getMimeType());
|
intent.setDataAndType(uri, file.getMimeType());
|
||||||
} catch (ActivityNotFoundException exception) {
|
} catch (ActivityNotFoundException exception) {
|
||||||
|
|
Loading…
Reference in a new issue