|
@@ -37,7 +37,6 @@ import android.os.Process;
|
|
|
import android.text.TextUtils;
|
|
|
import android.util.Pair;
|
|
|
|
|
|
-import com.nextcloud.client.account.UserAccountManager;
|
|
|
import com.owncloud.android.MainApp;
|
|
|
import com.owncloud.android.datamodel.FileDataStorageManager;
|
|
|
import com.owncloud.android.datamodel.OCFile;
|
|
@@ -75,8 +74,6 @@ import java.util.concurrent.ConcurrentHashMap;
|
|
|
import java.util.concurrent.ConcurrentLinkedQueue;
|
|
|
import java.util.concurrent.ConcurrentMap;
|
|
|
|
|
|
-import javax.inject.Inject;
|
|
|
-
|
|
|
import dagger.android.AndroidInjection;
|
|
|
|
|
|
public class OperationsService extends Service {
|
|
@@ -136,8 +133,6 @@ public class OperationsService extends Service {
|
|
|
private ConcurrentMap<Integer, Pair<RemoteOperation, RemoteOperationResult>>
|
|
|
mUndispatchedFinishedOperations = new ConcurrentHashMap<>();
|
|
|
|
|
|
- @Inject UserAccountManager accountManager;
|
|
|
-
|
|
|
private static class Target {
|
|
|
public Uri mServerUrl;
|
|
|
public Account mAccount;
|
|
@@ -163,7 +158,7 @@ public class OperationsService extends Service {
|
|
|
HandlerThread thread = new HandlerThread("Operations thread",
|
|
|
Process.THREAD_PRIORITY_BACKGROUND);
|
|
|
thread.start();
|
|
|
- mOperationsHandler = new ServiceHandler(thread.getLooper(), this, accountManager);
|
|
|
+ mOperationsHandler = new ServiceHandler(thread.getLooper(), this);
|
|
|
mOperationsBinder = new OperationsServiceBinder(mOperationsHandler);
|
|
|
|
|
|
// Separated worker thread for download of folders (WIP)
|
|
@@ -399,16 +394,14 @@ public class OperationsService extends Service {
|
|
|
private Target mLastTarget;
|
|
|
private OwnCloudClient mOwnCloudClient;
|
|
|
private FileDataStorageManager mStorageManager;
|
|
|
- private UserAccountManager accountManager;
|
|
|
|
|
|
|
|
|
- public ServiceHandler(Looper looper, OperationsService service, UserAccountManager accountManager) {
|
|
|
+ public ServiceHandler(Looper looper, OperationsService service) {
|
|
|
super(looper);
|
|
|
if (service == null) {
|
|
|
throw new IllegalArgumentException("Received invalid NULL in parameter 'service'");
|
|
|
}
|
|
|
mService = service;
|
|
|
- this.accountManager = accountManager;
|
|
|
}
|
|
|
|
|
|
@Override
|