X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/d0c9ad1091a1a161faf45583ff454622a05d6452..e16f63591d6315081dc8eefaba3541f366dd14b9:/src/com/owncloud/android/syncadapter/FileSyncService.java diff --git a/src/com/owncloud/android/syncadapter/FileSyncService.java b/src/com/owncloud/android/syncadapter/FileSyncService.java index 7d4dda68..3c999753 100644 --- a/src/com/owncloud/android/syncadapter/FileSyncService.java +++ b/src/com/owncloud/android/syncadapter/FileSyncService.java @@ -22,10 +22,12 @@ import android.content.Intent; import android.os.IBinder; /** - * Background service for syncing files to our local Database + * Background service for synchronizing remote files with their local state. * - * @author Bartek Przybylski + * Serves as a connector to an instance of {@link FileSyncAdapter}, as required by standard Android APIs. * + * @author Bartek Przybylski + * @author David A. Velasco */ public class FileSyncService extends Service { @@ -52,4 +54,5 @@ public class FileSyncService extends Service { public IBinder onBind(Intent intent) { return new FileSyncAdapter(getApplicationContext(), true).getSyncAdapterBinder(); } + }