X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/2ab9496b6e6bba15751c28295e9fd06c06aade6a..3d3046dc264792475c72987afc25beae23da4dc6:/src/com/owncloud/android/operations/common/SyncOperation.java diff --git a/src/com/owncloud/android/operations/common/SyncOperation.java b/src/com/owncloud/android/operations/common/SyncOperation.java index e16530d8..a9f89d41 100644 --- a/src/com/owncloud/android/operations/common/SyncOperation.java +++ b/src/com/owncloud/android/operations/common/SyncOperation.java @@ -1,4 +1,6 @@ /* ownCloud Android client application + * + * @author David A. Velasco * Copyright (C) 2012-2014 ownCloud Inc. * * This program is free software: you can redistribute it and/or modify @@ -23,7 +25,6 @@ import com.owncloud.android.lib.common.operations.OnRemoteOperationListener; import com.owncloud.android.lib.common.operations.RemoteOperation; import com.owncloud.android.lib.common.operations.RemoteOperationResult; -import android.app.Activity; import android.content.Context; import android.os.Handler; @@ -33,8 +34,6 @@ import android.os.Handler; * with local data in the device. * * Provides methods to execute the operation both synchronously or asynchronously. - * - * @author David A. Velasco */ public abstract class SyncOperation extends RemoteOperation { @@ -97,6 +96,7 @@ public abstract class SyncOperation extends RemoteOperation { * @param listenerHandler Handler associated to the thread where the methods of the listener objects must be called. * @return Thread were the remote operation is executed. */ + /* public Thread execute(FileDataStorageManager storageManager, Context context, OnRemoteOperationListener listener, Handler listenerHandler, Activity callerActivity) { if (storageManager == null) { throw new IllegalArgumentException("Trying to execute a sync operation with a NULL storage manager"); @@ -107,6 +107,7 @@ public abstract class SyncOperation extends RemoteOperation { mStorageManager = storageManager; return super.execute(storageManager.getAccount(), context, listener, listenerHandler, callerActivity); } + */ /**